Click here to Skip to main content
15,888,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Data not updating on fields using UPDATE Statement Pin
ZurdoDev19-Dec-16 8:25
professionalZurdoDev19-Dec-16 8:25 
QuestionDropdown pre-filled from prior page fires off required validator Pin
Bootzilla3315-Dec-16 9:54
Bootzilla3315-Dec-16 9:54 
AnswerRe: Dropdown pre-filled from prior page fires off required validator Pin
Richard Deeming16-Dec-16 2:05
mveRichard Deeming16-Dec-16 2:05 
GeneralRe: Dropdown pre-filled from prior page fires off required validator Pin
Bootzilla3316-Dec-16 6:49
Bootzilla3316-Dec-16 6:49 
GeneralRe: Dropdown pre-filled from prior page fires off required validator Pin
Richard Deeming16-Dec-16 9:54
mveRichard Deeming16-Dec-16 9:54 
GeneralRe: Dropdown pre-filled from prior page fires off required validator Pin
Bootzilla3316-Dec-16 17:15
Bootzilla3316-Dec-16 17:15 
GeneralRe: Dropdown pre-filled from prior page fires off required validator Pin
Richard Deeming19-Dec-16 1:58
mveRichard Deeming19-Dec-16 1:58 
QuestionNon-invocable member 'System.Web.UI.WebControls.ListControl.Items' cannot be used like a method error. Pin
Bootzilla3315-Dec-16 9:45
Bootzilla3315-Dec-16 9:45 
Getting error on bolded line, activitycode.Item(I),Value... if you can't see it.

C#
private void cvactivitycode_ServerValidate(object source, ServerValidateEventArgs args)
        {
            args.IsValid = false;
            for (short I = 1; (I
                        <= (activitycode.Items.Count - 1)); I++)
            {
                if (activitycode.Items(I).Value)
                {
                    args.IsValid = true;
                    break;
                }

            }

        }


What am I missing or need to fix.
AnswerRe: Non-invocable member 'System.Web.UI.WebControls.ListControl.Items' cannot be used like a method error. Pin
Michael_Davies15-Dec-16 10:10
Michael_Davies15-Dec-16 10:10 
AnswerRe: Non-invocable member 'System.Web.UI.WebControls.ListControl.Items' cannot be used like a method error. Pin
ZurdoDev15-Dec-16 10:28
professionalZurdoDev15-Dec-16 10:28 
AnswerRe: Non-invocable member 'System.Web.UI.WebControls.ListControl.Items' cannot be used like a method error. Pin
Afzaal Ahmad Zeeshan15-Dec-16 11:48
professionalAfzaal Ahmad Zeeshan15-Dec-16 11:48 
QuestionJavascript Book(s) Pin
Patrick Rogers15-Dec-16 6:29
Patrick Rogers15-Dec-16 6:29 
AnswerRe: Javascript Book(s) Pin
Richard MacCutchan15-Dec-16 6:42
mveRichard MacCutchan15-Dec-16 6:42 
AnswerRe: Javascript Book(s) Pin
Kornfeld Eliyahu Peter15-Dec-16 8:35
professionalKornfeld Eliyahu Peter15-Dec-16 8:35 
AnswerRe: Javascript Book(s) Pin
ZurdoDev15-Dec-16 9:06
professionalZurdoDev15-Dec-16 9:06 
QuestionASP.NET MVC Single Page Application with Type Script Pin
indian14314-Dec-16 16:51
indian14314-Dec-16 16:51 
AnswerRe: ASP.NET MVC Single Page Application with Type Script Pin
Richard MacCutchan14-Dec-16 22:03
mveRichard MacCutchan14-Dec-16 22:03 
AnswerRe: ASP.NET MVC Single Page Application with Type Script Pin
Afzaal Ahmad Zeeshan15-Dec-16 6:27
professionalAfzaal Ahmad Zeeshan15-Dec-16 6:27 
GeneralRe: ASP.NET MVC Single Page Application with Type Script Pin
indian14315-Dec-16 7:54
indian14315-Dec-16 7:54 
GeneralRe: ASP.NET MVC Single Page Application with Type Script Pin
Afzaal Ahmad Zeeshan15-Dec-16 7:59
professionalAfzaal Ahmad Zeeshan15-Dec-16 7:59 
QuestionHow to pass primary key ID field as parameter/UPDATE Statement Pin
Bootzilla3314-Dec-16 10:07
Bootzilla3314-Dec-16 10:07 
AnswerRe: How to pass primary key ID field as parameter/UPDATE Statement Pin
Richard MacCutchan14-Dec-16 22:01
mveRichard MacCutchan14-Dec-16 22:01 
AnswerRe: How to pass primary key ID field as parameter/UPDATE Statement Pin
Richard Deeming15-Dec-16 2:21
mveRichard Deeming15-Dec-16 2:21 
QuestionThe resource cannot be found. for mvc application Pin
indian14314-Dec-16 9:52
indian14314-Dec-16 9:52 
AnswerRe: The resource cannot be found. for mvc application Pin
Richard Deeming15-Dec-16 2:19
mveRichard Deeming15-Dec-16 2:19 

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.