Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi i have my master page with popup in popup i have submit button, once i click the submit button in popup i need to pass the data to db it done successfully but at the same time i need to pass some textbox value to content page and bind that in label while click submit those data need to be pass both db and content page. and content page show that retrieved data in page load i dont' have any idea to do this can any one know the process how to do


i need to do this using only client side no server side using jquery and ajax
Posted
Updated 13-May-14 23:09pm
v3
Comments
[no name] 14-May-14 3:02am    
textbox is in master page or content page?

 
Share this answer
 
use the qurey string


jqurey

$("#div_fullprofl", divcop).html('Viwe full Profile ')




C#
C#
protected void Page_Load(object sender, EventArgs e)
   {
      
       string prof_ID = Context.Request.QueryString["Reg_id"];
       Session["regid_"] = prof_ID;

pass this session id to
arparams[1] = new SqlParameter("@regId",regId); u
 
Share this answer
 
v4
Comments
Prasanth Radhakrishanan 14-May-14 5:07am    
href="view_fullprofile.aspx?Reg_id=' + id
ramjiricky 14-May-14 5:17am    
thanks for your reply but i need to pass this through client side only

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900