Click here to Skip to main content
15,921,716 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Difference between Abstract Method and Virtual Method ? Pin
PIEBALDconsult10-Aug-15 6:08
mvePIEBALDconsult10-Aug-15 6:08 
Questionpersist changes by javascript on postback in asp.net Pin
Rahul Prajapat8-Aug-15 16:32
Rahul Prajapat8-Aug-15 16:32 
AnswerRe: persist changes by javascript on postback in asp.net Pin
F-ES Sitecore9-Aug-15 1:08
professionalF-ES Sitecore9-Aug-15 1:08 
QuestionConsole Application in C# Pin
PRAKAS PANDEY8-Aug-15 4:09
PRAKAS PANDEY8-Aug-15 4:09 
AnswerRe: Console Application in C# Pin
Ravi Bhavnani8-Aug-15 5:00
professionalRavi Bhavnani8-Aug-15 5:00 
AnswerRe: Console Application in C# Pin
User 418025410-Aug-15 9:11
User 418025410-Aug-15 9:11 
QuestionHow to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 118937297-Aug-15 8:27
Member 118937297-Aug-15 8:27 
AnswerRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx7-Aug-15 8:55
professionaljkirkerx7-Aug-15 8:55 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 118937297-Aug-15 9:19
Member 118937297-Aug-15 9:19 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx7-Aug-15 12:41
professionaljkirkerx7-Aug-15 12:41 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx8-Aug-15 8:30
professionaljkirkerx8-Aug-15 8:30 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 8:31
Member 1189372910-Aug-15 8:31 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx10-Aug-15 9:48
professionaljkirkerx10-Aug-15 9:48 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 9:57
Member 1189372910-Aug-15 9:57 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx10-Aug-15 11:09
professionaljkirkerx10-Aug-15 11:09 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 11:32
Member 1189372910-Aug-15 11:32 
JavaScript


<script type="text/javascript">
        $(function () {
            var s = $(".Step");
            var nOS = s.length;
            var csIdx = @Model.csIdx;
            var cS = s [csIdx];
            $('#sCount').val(nOS);


            $(cS).fadeIn(); 


            if (csIdx > 0) {
                $("button[name='prev']").show();
                $("button[name='cancel']").show();
            }

            if (csIdx < nOS - 1) {
                $("button[name='next']").show();
                $("button[name='cancel']").show();
            }
            else {
                $("button[name='finish']").show();
            }

            $("button[name='next'],button[name='finish']").click(function () {

                var $step = $(".Step:visible"); 


                var ifError = false;
                $step.find("input,textarea,select").each(function () {
  if (!$(this).validationEngine('validate')) {                         ifError = true;
                    }

                });

                if (ifError)
                    return false; });

GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx10-Aug-15 12:10
professionaljkirkerx10-Aug-15 12:10 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 14:01
Member 1189372910-Aug-15 14:01 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
jkirkerx11-Aug-15 6:50
professionaljkirkerx11-Aug-15 6:50 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372911-Aug-15 7:25
Member 1189372911-Aug-15 7:25 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 11:32
Member 1189372910-Aug-15 11:32 
GeneralRe: How to go to next Page while hitting the next button without selecting a value in the current page? Pin
Member 1189372910-Aug-15 9:59
Member 1189372910-Aug-15 9:59 
QuestionDatalist control Pin
Otekpo Emmanuel7-Aug-15 2:28
Otekpo Emmanuel7-Aug-15 2:28 
AnswerRe: Datalist control Pin
User 418025410-Aug-15 9:13
User 418025410-Aug-15 9:13 
GeneralRe: Datalist control Pin
Otekpo Emmanuel12-Aug-15 11:00
Otekpo Emmanuel12-Aug-15 11:00 

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.