Click here to Skip to main content
15,890,506 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPosting a form to a table Pin
Member 914293618-Sep-14 10:23
Member 914293618-Sep-14 10:23 
AnswerRe: Posting a form to a table Pin
Richard Deeming19-Sep-14 1:34
mveRichard Deeming19-Sep-14 1:34 
QuestionI am having problem updating one table by selecting values from dynamic dropdownlist from another table Pin
samflex18-Sep-14 5:40
samflex18-Sep-14 5:40 
AnswerRe: I am having problem updating one table by selecting values from dynamic dropdownlist from another table Pin
jkirkerx18-Sep-14 13:25
professionaljkirkerx18-Sep-14 13:25 
GeneralRe: I am having problem updating one table by selecting values from dynamic dropdownlist from another table Pin
samflex18-Sep-14 17:28
samflex18-Sep-14 17:28 
GeneralRe: I am having problem updating one table by selecting values from dynamic dropdownlist from another table Pin
jkirkerx18-Sep-14 17:45
professionaljkirkerx18-Sep-14 17:45 
GeneralRe: I am having problem updating one table by selecting values from dynamic dropdownlist from another table Pin
jkirkerx18-Sep-14 18:04
professionaljkirkerx18-Sep-14 18:04 
QuestionHow to check for validation as well as run code in code page on submit button press Pin
omrohit118-Sep-14 3:39
omrohit118-Sep-14 3:39 
I want to insert some JavaScript code for validation. Here it is :
script language="javascript">

function checkEmail() {

    var email = document.getElementById('txtEmail');
    var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;

    if (!filter.test(email.value)) {
    alert('Please provide a valid email address');
    email.focus;
    return false;
 }
}</script>


and the code in body is :
<input type='text' id='txtEmail'/>
<input type='submit' name='submit' onclick='Javascript:checkEmail();'/>


Now I want to check for validation on submit button but I also want to run code written in .cs page for
<asp:Button ID="BtnSubmit" runat="server" onclick="Button1_Click" Text="Register Now" />

AnswerRe: How to check for validation as well as run code in code page on submit button press Pin
hypermellow18-Sep-14 3:45
professionalhypermellow18-Sep-14 3:45 
QuestionCalling multiple OData services from within .net API async Pin
LiQuick17-Sep-14 21:49
LiQuick17-Sep-14 21:49 
AnswerRe: Calling multiple OData services from within .net API async Pin
LiQuick22-Sep-14 2:08
LiQuick22-Sep-14 2:08 
QuestionAspx Page Load Pin
Narendra L17-Sep-14 1:48
Narendra L17-Sep-14 1:48 
AnswerRe: Aspx Page Load Pin
Kornfeld Eliyahu Peter17-Sep-14 2:00
professionalKornfeld Eliyahu Peter17-Sep-14 2:00 
AnswerRe: Aspx Page Load Pin
Sibeesh KV29-Sep-14 1:13
professionalSibeesh KV29-Sep-14 1:13 
QuestionHow to learn Asp.net MVC? Pin
RajeeshMenoth16-Sep-14 23:32
professionalRajeeshMenoth16-Sep-14 23:32 
AnswerRe: How to learn Asp.net MVC? Pin
Swinkaran17-Sep-14 18:20
professionalSwinkaran17-Sep-14 18:20 
GeneralRe: How to learn Asp.net MVC? Pin
RajeeshMenoth17-Sep-14 21:51
professionalRajeeshMenoth17-Sep-14 21:51 
AnswerRe: How to learn Asp.net MVC? Pin
Sibeesh KV29-Sep-14 1:15
professionalSibeesh KV29-Sep-14 1:15 
QuestionASP - Display a GridView on Second Page Pin
Member 1090638616-Sep-14 5:16
Member 1090638616-Sep-14 5:16 
AnswerRe: ASP - Display a GridView on Second Page Pin
ZurdoDev16-Sep-14 10:29
professionalZurdoDev16-Sep-14 10:29 
QuestionDetermining all possible AD login return types (i.e. User Not Found, etc.) from a MVC json web service Pin
Stephen Holdorf15-Sep-14 13:36
Stephen Holdorf15-Sep-14 13:36 
Questionweb.config Pin
Member 1108003313-Sep-14 5:40
Member 1108003313-Sep-14 5:40 
AnswerRe: web.config Pin
jkirkerx15-Sep-14 7:09
professionaljkirkerx15-Sep-14 7:09 
AnswerRe: web.config Pin
Sibeesh KV29-Sep-14 1:18
professionalSibeesh KV29-Sep-14 1:18 
Questionasp.net membership Pin
msc92013-Sep-14 3:48
msc92013-Sep-14 3:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.