Click here to Skip to main content
16,013,548 members

Comments by keyur soni (Top 7 by date)

keyur soni 8-Mar-16 1:13am View    
Hi, I need same solution , Can you plz share the way to integrate SCOM with service?
keyur soni 4-Jul-13 6:18am View    
Thanks for your reply. the issue has been resolved
keyur soni 4-Jul-13 6:18am View    
thanks for your reply...
keyur soni 13-Sep-11 5:43am View    
Deleted
<head runat="server">
<title>Untitled Page</title>

<script type="text/javascript" src="jquery.js" />

<script type="text/javascript">
$(document).ready(function () {
var name = 'stupid';
$('#<%=Button1.ClientID %>').click(function () {
$.ajax({
type: "POST",
url: "Default7.aspx/ServerSideMethod",
data: "{'paraml': " + $("#Text1").val() + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (msg) {
$('#myDiv').text(msg.d);
}
})
return false;
});
});
</script>

</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="Text1" runat="server">
<asp:Button ID="Button1" runat="server" Text="Click" />
<br />
<div id="myDiv">
</div>
</div>
</form>
</body>

It not working
keyur soni 2-Jun-11 8:02am View    
Deleted
Not workin on my local host.