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> &nbsp;
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label> &nbsp;&nbsp;
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />&nbsp;
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>&nbsp;

</div>









share|improve this question
























  • 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















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> &nbsp;
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label> &nbsp;&nbsp;
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />&nbsp;
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>&nbsp;

</div>









share|improve this question
























  • 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













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> &nbsp;
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label> &nbsp;&nbsp;
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />&nbsp;
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>&nbsp;

</div>









share|improve this question















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> &nbsp;
<asp:TextBox ID="TxtUserName" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label> &nbsp;&nbsp;
<asp:TextBox ID="TxtPassword2" runat="server"></asp:TextBox>
<br />
<br />&nbsp;
<asp:Button ID="Btnlogin" runat="server" Text="LogIn" OnClick="Btnlogin_Click" style="background-color: #33CC33"/>&nbsp;

</div>






javascript jquery html css ajax






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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
















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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python