Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I want to call a particular c# function from javascript . Now i am using postback function in javascript and creating a session for that postback. so page load event i am checking that session and call particular function . But i dont like that method . Becuse we cant call a particular function. Any Idea Guys ....
Posted
Comments
Subinal 24-Apr-12 9:10am    
What is the intent of your C# function?

yes, you can make web method like.. you can create web service to call to server side code
Java
[WebMethod]
public static String SetName(string name)
{
    return "Your String"
}


and then call in javascript like..
JavaScript
PageMethods.SetName(parameterValueIfAny, onSuccessMethod,onFailMethod);


this also required
ASP.NET
<asp:scriptmanager id="ScriptMgr" runat="server" enablepagemethods="true" xmlns:asp="#unknown"> </asp:scriptmanager>
 
Share this answer
 
v2
There are few ways to interact with server side through client side(Javascript):
1. XMLHttpRequest[^]
2. Callback[^]
3. WebService call[^]
4. PageMethod[^]
 
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