i've coded some traditional asp and a fair amount of vb6.0 and attempting to write a new but similar web app in aspx/vb (so thats vb.net right?)
looking at very beginning tutorial, http://quickstarts.asp.net/QuickStartv20/aspnet/doc/pages/pages.aspx, the 3rd example codes an text input with
<h3> Name: <input name="Name" type=text value="<%=HttpUtility.HtmlEncode(Request.QueryString("Name"))%>">
which results in rendered html of <h3> Name: <input name="Name" type=text value="">
ok 2 questions,
1. why all that script just to get the 2nd " for the value parameter, this is faster, and easier than traditional asp or just html? y ...
Go to the complete details ...