Call Asp.net Page Method Using Jquery <html> <head runat="server"> <title>Ajax Page</title> <script type="text/javascript" src="../Library/jquery-1.6.2.min.js"></script> <script type="text/javascript" language="javascript"> function CalllPageMethod() { // this will be called on button click event $.ajax({ type: "POST", url: "Default.aspx/" + "GetData" , // Default.page is your page and GetData is Your public Method inside code behind file which will return some response. dat...
Posts
Showing posts from April 18, 2012
- Get link
- X
- Other Apps
Dynamically change the value of public variable using reflection in c# Once i was working on asp.net project and i got a little task that i need to change the values of Blank public variables, i was having two way of doing this one was to set each variable value manually or other is by using reflection, i did little Google, and then created a method that replace the value of each public variable of type string. //this1 is the any class object and you want to replace the values of public string variables of this object public void ReplaceBlankValues(object this1) { //MemberInfo array will hold all public variables of class MemberInfo[] properties = this1.GetType().GetMembers(BindingFlags.Public | BindingFlags.Instance); foreach (var property in properties) { ...