hi i wants to create an dll file for removing blankspaces in a given string..........
here iam writing the code but it was not working.....
please give me the correct code....
here iam using asp.net with vb.net
Namespace fillblank
Public Class Class1
Private Sub blankspces()
Dim a
Dim done
a = " "
Do Until done
If InStr(1, a, " ") = 0 Then
done = True
Else
a = a.Replace(" ", String.Empty)
End If
Loop
'a.Trim.Replace(" ", String.Empty)
End Sub
End Class
End Namespace
please help me