Can somebody what is the Replace equivalent in ASP.Net..Below is the VB.Net code..I Searched on the net..but not able to do it....I hope so it will be too simple..
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim sID As String = "ABC1"
Dim lId As Integer
sID = Replace("ABC1", "ABC", "")
lId = Int(sID)
End Sub