15,747,908 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Javascript questions
View C++ questions
View Python questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
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.
keyur soni
6-May-11 2:35am
View
good
keyur soni
18-Nov-10 23:47pm
View
Every thing is fine. when i am press tab button it fire.Here i am set the focus() for another control then it work.
script = "<script language='javascript'>window.parent.document.forms[0].ctl00_cphPageContent_hdnCPTId.value='" + CPT_Code + "';window.parent.__doPostBack('ctl00$cphPageContent$lnkSubmit1','');window.parent.document.forms[0].ctl00_cphPageContent_txtDOSFrom.focus();</script>";
here i am write above script on select link of the pop up page.
Show More