how to display single quotes(')symbol in to the textbox at runtime
ASP.NET
2
Posts
2
Posters
1
Views
1
Watching
-
-
Hi all when i execute the following code it dosent display the single quotes(') with in the textbox. how to solve this problem any one pls suggest me. Dim t As String t = "'" Dim str As String str = "" str = str & "
" Response.Write(str) By Paul PAul
Dim t As String ' t = "'" Dim str As String str = "" str = str & "
" Response.Write(str)