How to save the data to SQL table by using jQuery popup modal?
up vote
1
down vote
favorite
I want to store data collected from a modal into a sql server table.
HTML and JavaScript:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/blitzer/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#dialog").dialog({
modal: true,
autoOpen: false,
title: "LogIn",
width: 378.84,
height: 205.84,
top: 157,
left: 333
});
$("#btnShow").click(function () {
$('#dialog').dialog('open');
});
});
</script>
<input type="button" id="btnShow" value="Login"/>
<div id="dialog" style="display: none" align="center">
<asp:Label ID="lblUsername" runat="server" Text="UserName"></asp:Label>
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label>
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>
</div>
javascript jquery html css ajax
add a comment |
up vote
1
down vote
favorite
I want to store data collected from a modal into a sql server table.
HTML and JavaScript:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/blitzer/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#dialog").dialog({
modal: true,
autoOpen: false,
title: "LogIn",
width: 378.84,
height: 205.84,
top: 157,
left: 333
});
$("#btnShow").click(function () {
$('#dialog').dialog('open');
});
});
</script>
<input type="button" id="btnShow" value="Login"/>
<div id="dialog" style="display: none" align="center">
<asp:Label ID="lblUsername" runat="server" Text="UserName"></asp:Label>
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label>
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>
</div>
javascript jquery html css ajax
As i understand you are using Asp.NET buttons in your project and even have definedOnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to useBtnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?
– Tornike Shavishvili
Nov 12 at 7:19
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want to store data collected from a modal into a sql server table.
HTML and JavaScript:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/blitzer/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#dialog").dialog({
modal: true,
autoOpen: false,
title: "LogIn",
width: 378.84,
height: 205.84,
top: 157,
left: 333
});
$("#btnShow").click(function () {
$('#dialog').dialog('open');
});
});
</script>
<input type="button" id="btnShow" value="Login"/>
<div id="dialog" style="display: none" align="center">
<asp:Label ID="lblUsername" runat="server" Text="UserName"></asp:Label>
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label>
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>
</div>
javascript jquery html css ajax
I want to store data collected from a modal into a sql server table.
HTML and JavaScript:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/blitzer/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#dialog").dialog({
modal: true,
autoOpen: false,
title: "LogIn",
width: 378.84,
height: 205.84,
top: 157,
left: 333
});
$("#btnShow").click(function () {
$('#dialog').dialog('open');
});
});
</script>
<input type="button" id="btnShow" value="Login"/>
<div id="dialog" style="display: none" align="center">
<asp:Label ID="lblUsername" runat="server" Text="UserName"></asp:Label>
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label>
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>
</div>
javascript jquery html css ajax
javascript jquery html css ajax
edited Nov 11 at 23:47
Graham
3,461123558
3,461123558
asked Nov 11 at 16:42
user10636494
61
61
As i understand you are using Asp.NET buttons in your project and even have definedOnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to useBtnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?
– Tornike Shavishvili
Nov 12 at 7:19
add a comment |
As i understand you are using Asp.NET buttons in your project and even have definedOnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to useBtnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?
– Tornike Shavishvili
Nov 12 at 7:19
As i understand you are using Asp.NET buttons in your project and even have defined
OnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to use Btnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?– Tornike Shavishvili
Nov 12 at 7:19
As i understand you are using Asp.NET buttons in your project and even have defined
OnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to use Btnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?– Tornike Shavishvili
Nov 12 at 7:19
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250910%2fhow-to-save-the-data-to-sql-table-by-using-jquery-popup-modal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
As i understand you are using Asp.NET buttons in your project and even have defined
OnClick="Btnlogin_Click"
click asp.net handler to login button. I think at this point you have two solutions: first is to create some rest service, to which you will post your data via ajax. The rest application then will write your data to sql server table. The second is to useBtnlogin_Click
handler and write some c# asp.Net code which will write your data to SQL server table. Have you done research in any of these directions?– Tornike Shavishvili
Nov 12 at 7:19