Dear Friends,
I was trying to pass some variable to a asp page with following code
Response.Write "<td>"& countdt &"<br><a href=""view_caltable.asp?yr="& yn &" &mn="& mn &" &ct="&countdt &" &name1="& nm1 &""" >" & nm1 & "</a> <br><a href=""view_caltable1.asp? prd="& yn &"&mn="&mn &" &ct="&countdt &" &name2="&nm2&"""> "& nm2 &"</td>".
Problem is that all the varaibles are getting passed and first link view_caltable.asp is working perfectly.But second asp file "view_caltable1.asp" is not able to receive some value,
in "view_caltable1.asp", I am using following code,
mn=Request.QUeryString("mn")
name_po2=Request.Querystring("name2")
count=Request.QueryString("ct")
prd=Request.QUeryString("yn")
Here 'prd' is not accepting values form 'yn'
All other varaible are accepting the values. Can anyone help in this proplem please. Is there is any limitation in passing varibale.
Thank
Graceson