Retiive Parameter from URL
-
Hi All, I have just passed a parameter to a URL through a javascript function so that i can get the value in the next page using C#, Iam not able to get the value in the second page, could any one please help me how to do it ?. Please help me out ....... Thanks chandu
chandu
-
Hi All, I have just passed a parameter to a URL through a javascript function so that i can get the value in the next page using C#, Iam not able to get the value in the second page, could any one please help me how to do it ?. Please help me out ....... Thanks chandu
chandu
Did you pass in query string ? can post here you that piece of code ?
Parwej Ahamad g.parwez@gmail.com
-
Did you pass in query string ? can post here you that piece of code ?
Parwej Ahamad g.parwez@gmail.com
-
function pass_var(i_d) { alert(i_d); window.open("home.aspx?" + "var_id=" + i_d); return; } This is the javascript function which i have written in the first page.
chandu
try with this
window.open("home.aspx?var_id=" + i_d);
bEST rEGARD pATHAN
please don't forget to vote on the post that helped you.
-
try with this
window.open("home.aspx?var_id=" + i_d);
bEST rEGARD pATHAN
please don't forget to vote on the post that helped you.