473,498 Members | 891 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2319
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
1410
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 if d has been instantiated?
1
3469
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 database. Anyway, I noticed that required fields...
2
2782
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 Event handler in order to display an error...
2
3704
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 text entry. I also setup a Summary Control to post...
1
14264
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, etc. The question was: How can I put a reset...
0
2860
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 call in the code-behind, this is because I need to...
1
1804
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, every validatoino control, the submit button and...
5
4935
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.. thank you
2
5195
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 the validation summary says "Date field...
0
7124
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6998
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6884
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4904
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4586
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3090
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
651
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
287
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.