Hello butterfly
I think your C# code translates to this in
VB.NET ( I don't know C# at all):
------------------------------------------------------------
Dim str As String = "This is a <Test String>."
Response.Write(str)
Dim encodedstr As System.Web.HttpUtility
encodedstr.UrlEncode(str)
Response.Write(encodedstr)
------------------------------------------------------------
When I try this I only get "This is a ."
I don't even see the encoded string.
Please Help

