An ASP page is passed the following querystring:
Now when I do a Response.Write of the name-value pairs in the querystring in this page i.e. in Contacts.asp in this way
<%
Response.Write("Name : " & Request.QueryString("cname"
)
Response.Write("City : " & Request.QueryString("ccity"
)
Response.Write("State : " & Request.QueryString("cstate"
)
Response.Write("Country : " & Request.QueryString("ccountry"
)
Response.Write("Home Phone : " & Request.QueryString("chomephone"
)
Response.Write("Work Phone : " & Request.QueryString("cworkphone"
)
%>
all the values gets displayed except for the city name. Why is this happening? This is driving me crazy!!!!!
Thanks,
Arpan
Now when I do a Response.Write of the name-value pairs in the querystring in this page i.e. in Contacts.asp in this way
<%
Response.Write("Name : " & Request.QueryString("cname"
Response.Write("City : " & Request.QueryString("ccity"
Response.Write("State : " & Request.QueryString("cstate"
Response.Write("Country : " & Request.QueryString("ccountry"
Response.Write("Home Phone : " & Request.QueryString("chomephone"
Response.Write("Work Phone : " & Request.QueryString("cworkphone"
%>
all the values gets displayed except for the city name. Why is this happening? This is driving me crazy!!!!!
Thanks,
Arpan