472,333 Members | 1,052 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,333 software developers and data experts.

Mental Block - probably easy answer...validation summary

Hi all,

I have a login page which has username and password fields, a login button,
and 2 validation controls (one for each field) - currently I have controls
to display to the summary if the items missing etc.all working fine...

However, when the user logs in I fire off to a stored procedure, at this
point, unless the login is successful I can return up to about 8 different
error numbers in a string which I then split out into an array...

What I'd normally do in 'vanilla' ASP would be to iterate through the return
array and display a set of <tr><td></td></tr>'s etc for each error
message....I am at a complete loss as to how I do this in ASP.Net without
the use of labels?

Is it possible that I could add items to the validation summary at the
bottom of the page using my own error messages based on the returned error
code?

If not, how would I go about doing what i mentioned above, ie, producing
several rows in a table on the page? And if thats possible, would it also
be possible to remove the standard validation summary and upon the fields
being left empty, my table up top gets populated with the error messages
instead?

Any help would be apprecaited - and the easier to follow/understand the
better :o)

Many thanks for your time.

Regards

Rob
Nov 18 '05 #1
3 2235
How much work do you want to do?

The validation summary can be added to, but it is not a straightforward
process. It is facilitated by creating your own validation controls that
write out a message for the summary control. As the methodology is rather
standardized (which events fired, et al), you can hijack this functionality
to add your messages to the control by making a validation control.

On the other hand, you are creating functionality that is a bit kludgy when
you create a "validation control" that does not really validate, so the
label method is a working method. You can also set up a container control
(panel, et al) and add literals (which are lighter in client tags than the
label) to the container.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Rob Meade" <ro**********@NOSPAMubht.swest.nhs.uk> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi all,

I have a login page which has username and password fields, a login button, and 2 validation controls (one for each field) - currently I have controls
to display to the summary if the items missing etc.all working fine...

However, when the user logs in I fire off to a stored procedure, at this
point, unless the login is successful I can return up to about 8 different
error numbers in a string which I then split out into an array...

What I'd normally do in 'vanilla' ASP would be to iterate through the return array and display a set of <tr><td></td></tr>'s etc for each error
message....I am at a complete loss as to how I do this in ASP.Net without
the use of labels?

Is it possible that I could add items to the validation summary at the
bottom of the page using my own error messages based on the returned error
code?

If not, how would I go about doing what i mentioned above, ie, producing
several rows in a table on the page? And if thats possible, would it also
be possible to remove the standard validation summary and upon the fields
being left empty, my table up top gets populated with the error messages
instead?

Any help would be apprecaited - and the easier to follow/understand the
better :o)

Many thanks for your time.

Regards

Rob

Nov 18 '05 #2
"Cowboy (Gregory A. Beamer)" wrote...
How much work do you want to do?
Not much! :D
The validation summary can be added to, but it is not a straightforward
process. It is facilitated by creating your own validation controls that
write out a message for the summary control. As the methodology is rather
standardized (which events fired, et al), you can hijack this functionality to add your messages to the control by making a validation control.

On the other hand, you are creating functionality that is a bit kludgy when you create a "validation control" that does not really validate, so the
label method is a working method. You can also set up a container control
(panel, et al) and add literals (which are lighter in client tags than the
label) to the container.

*WHOOOSH*

Ok - completely over my head all of that....

I'm currently looking at the add table row / table cell dynamically etc -
but even that wont work - grrr - even using the example in the help file
with Visual Studio and likewise on the MS site - I suspect I have to put a
IMPORTS at the top of the page or something - but as usual no mention is
made of this in the help :o(

Any ideas...

This is what I'm trying :

Dim tRow As New TableRow()
Table1.Rows.Add(tRow)

When I try to use this in my code - the Dim line REMOVES the brackets at the
end of TableRow

Then the second line has the purple scribble under tRow...

Not my day :(

Regards

Rob
Nov 18 '05 #3
Apologies for going over your head. It will become clear over time.

There are basically two ways to add items to a page like you describe.

1. Make your own validation control. This is the *whoosh* you described, as
it requires some understanding of derived classes.
2. Add your own controls to the page that handle the special messages.

I will examine #2, as that is what you are trying (comments inline):

"Rob Meade" <ro**********@NOSPAMubht.swest.nhs.uk> wrote in message
news:eq**************@tk2msftngp13.phx.gbl...

I'm currently looking at the add table row / table cell dynamically etc -
but even that wont work - grrr - even using the example in the help file
with Visual Studio and likewise on the MS site - I suspect I have to put a
IMPORTS at the top of the page or something - but as usual no mention is
made of this in the help :o(

Any ideas...

This is what I'm trying :

Dim tRow As New TableRow()
Table1.Rows.Add(tRow)

When I try to use this in my code - the Dim line REMOVES the brackets at the end of TableRow


The disappearing () is quite normal with Visual Basic. The problem is you
have not added any cells to the row. Here is an example that uses a label to
render some text.

Dim tr As New TableRow
Dim tc As New TableCell
Dim lbl As New Label
lbl.Text = "This is some sample text"
tc.Controls.Add(lbl)
tr.Cells.Add(tc)
Table1.Rows.Add(tr)

NOTE: You can also use a literal.

Dim tr As New TableRow
Dim tc As New TableCell
tc.Controls.Add(New LiteralControl("This is some sample text"))
tr.Cells.Add(tc)
Table1.Rows.Add(tr)

Literals are a little lighter, although you will not be able to position as
easily. As you are using a table, this is not a problem. NOTE that you could
do this a bit more longhand, if you wish:

Dim tr As New TableRow
Dim tc As New TableCell
Dim lit As new LiteralControl("This is some sample text"))

tc.Controls.Add(New LiteralControl(lit)
tr.Cells.Add(tc)
Table1.Rows.Add(tr)

Do not get overdrawn on the specifics here, just play with the code and you
will feel more comfortable. You can now loop, for example, through a loop of
validation error messages, like so:

Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load

'Get validation errors
' Assuming an array here, have to alter for other forms
Dim aryString() As String = ValidateErrors()

'Set up counter for the loop
Dim intCounter As Integer

For intCounter = 0 To UBound(aryString)
Dim tr As New TableRow
Dim tc As New TableCell
tc.Controls.Add(New LiteralControl(aryString(intCounter)))
tr.Cells.Add(tc)
Table1.Rows.Add(tr)
Next
End Sub

'NOTE: This is simply to test, create a true validation routine
' instead of this kludge
Private Function ValidateErrors() As String()
'Simple array; yours will come from validation
Dim outputString() As String = {"Validation error 1", _
"Validation error 2", "Validation Error 3"}

'Return the array for processing in Page_Load
Return outputString
End Function
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: craig | last post by:
I am having a mental block... What is the method for determining if an oject has been instantaited in C#? Ex: Dataset d; How can I tell...
1
by: Tony | last post by:
Hi folks, I've got a bit of a problem. I have a situation where I build forms completely dynamically based on a form definition supplied from a...
2
by: Lucas Tam | last post by:
Hi all, I want to display an error message from a custom validator in my Validation Summary control. Do I need to build the ServerValidate...
2
by: Barbara Alderton | last post by:
I setup some standard Required Field Validation controls and one Custom validation control on an ASP.NET page (within a user control) to validate...
1
by: NancyASAP | last post by:
Thought I'd share this since it took me a long time to get it working. Thanks to a bunch of contributers in Google Groups who shared javascript,...
0
by: Cleako | last post by:
Here is my dilema. I have a validation summary that I use soley for my Required Field Validators. I have it setup to run from a Page.Validate...
1
by: Buddy Ackerman | last post by:
I don't know what the problem is. I have a form with several controls that need to be validated, I put a validation group in every form control,...
5
by: paul_zaoldyeck | last post by:
does anyone know how to validate an xml file against multiple defined schema? can you show me some examples? i'm making here an xml reader.. ...
2
by: nmakhan | last post by:
I have a validation summary that I use soley for my Required Field Validators. That works fine if I do things that way up to a point, if by chance...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.