Click here to Skip to main content
15,896,421 members
Please Sign up or sign in to vote.
1.67/5 (5 votes)
See more:
Suppose you have a page named Default.aspx. On this page there is a
Click here to see data comming from page method
. You want to show date in this div from a method in code file.
In Default.aspx.cs make a Method like this.
add following namespace.

using System.web.services;

[WebMethod]
public static string GetData()
{
return "Pakistan Zindabad";

}
//write this code on Default.aspx head section.
<script type="text/javascript" src="Scripts/jquery-1.4.1.js"></script>
<script type="text/javascript" src="Scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {

$("#div1").click(function () {

$.ajax({
type: "POST",
url: "default7.aspx/GetData",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {

$("#div1").html(msg.d);

}

});
});

/script>

This solution is working fine.
Posted
Comments
[no name] 26-Apr-12 14:06pm    
Reason for my vote of 1
This is not a question

1 solution

This looks like a Tip that you want to share with others.

Post here as a Tip/Trick: Publish Tip/Trick here on CodeProject[^]
 
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