Click here to Skip to main content
15,896,493 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
After fetching several records, how can pass the values to jquery sentence?
Posted
Comments
Manas Bhardwaj 4-Mar-11 6:59am    
not clear enough
Sandeep Mewara 4-Mar-11 7:01am    
Elaborate more... what are you trying to do and the issue.
Monjurul Habib 4-Mar-11 15:36pm    
did you try anything??share your code please.
kiran dangar 20-Oct-11 5:25am    
Please elaborate...

1 solution

You can return serialzed json:

C#
System.Web.Script.Serialization.JavaScriptSerializer js = new System.Web.Script.Serialization.JavaScriptSerializer();
               json = js.Serialize(parms);


OR

you can just use
C#
Response.Write("somedata");


It all depends on how you are using it when it gets back into AJAX.
 
Share this answer
 

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