R/sir, can any one tell the line by line explanation of this asp code? <% dim fname fname=Request.QueryString("fname") If fname<>"" Then Response.Write("Hello " & fname & "!<br />") Response.Write("How are you today?") End If %> thanks
<% ' define the variable fname dim fname 'read fname's value from the query string fname=Request.QueryString("fname") 'check if fname is empty If fname<>"" Then 'write back Hello .... Response.Write("Hello " & fname & "!<br />") Response.Write("How are you today?") 'end of if End If %>