473,397 Members | 1,972 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Multiple asp:buttons on one form but ONLY one should submit?

Sorry for the length of this post.

I have created a rather complex form which has a header/line item (parent
and child records) structure. It's for an intranet. A screenshot can be
seen here: http://www.drpt.virginia.gov/temp1.gif All the fields on this
form have validation controls on them so they can not submit the form unless
all fields are completed and some fall within a specified numeric range.

When the form first is loaded, there are two buttons as shown in the link
above that are disabled by default. They become enabled once the form is
submitted.

Here's the basic concept. The user fills out the form and clicks Save Data.
The form is using ViewState so when the form is submitted (Save Data), the
page posts to itself and the data "sticks" in the fields. The Save Data
button fires a sub routine which writes the data in the top section of the
form to one table and the "line item" section to another table. When the
data is successfully saved as shown in
http://www.drpt.virginia.gov/temp2.gif, a confirmation label is shown on the
page and a DataGrid displays the new line item. The user can then add a
second, third or however many line items by simply filling in the fields
(and even changing the header information if needed) and clicking Save Data
each time. My sub successfully works and each time the page "loads", the
DataGrid gets a new row (image only shows one). So far, so good.

The thought behind this structure is that the user needs to able to enter in
multiple line items as needed, so here I'm letting them add them one at a
time instead hard coding X number of blank line items ...X number of rows of
form fields (the validation for that would be a nightmare).

All works fine. Once the SaveData sub is fired, I set a variable in
ViewState and enable the two additional buttons at the button and change my
INSERT statement to UPDATE statement for the header data. One of the newly
enabled buttons is a "Delete" button. I wanted to allow the user to Delete
all the records and start over with a fresh form.

Here's the problem (finally): My delete sub works just fine but by clicking
the "Delete" button causes the form to post and all of the field validators
are triggered. Instead of deleting the data and refreshing the page as my
sub should do, I'm prompted to provide data in all the required fields! In
short, my form thinks my delete button is a submit button instead of just a
plain button.

Is there anyway to work around this? I see that you cannot define exactly
what TYPE of button it is using asp:button such as type="button" or
type="submit". So how can I use a button to call my DeleteRecords sub
without being pestered by the form validation controls?

TIA!!!

-Shane
Nov 18 '05 #1
3 2544
Shane,

You'll love how easy this is!

On your delete button just set it's "CausesValidation" property to false.
Then it won't trigger the validators.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"D. Shane Fowlkes" <sh**********@h-o-t-m-a-i-l.com> wrote in message
news:Oj*************@tk2msftngp13.phx.gbl...
Sorry for the length of this post.

I have created a rather complex form which has a header/line item (parent
and child records) structure. It's for an intranet. A screenshot can be
seen here: http://www.drpt.virginia.gov/temp1.gif All the fields on this
form have validation controls on them so they can not submit the form unless all fields are completed and some fall within a specified numeric range.

When the form first is loaded, there are two buttons as shown in the link
above that are disabled by default. They become enabled once the form is
submitted.

Here's the basic concept. The user fills out the form and clicks Save Data. The form is using ViewState so when the form is submitted (Save Data), the
page posts to itself and the data "sticks" in the fields. The Save Data
button fires a sub routine which writes the data in the top section of the
form to one table and the "line item" section to another table. When the
data is successfully saved as shown in
http://www.drpt.virginia.gov/temp2.gif, a confirmation label is shown on the page and a DataGrid displays the new line item. The user can then add a
second, third or however many line items by simply filling in the fields
(and even changing the header information if needed) and clicking Save Data each time. My sub successfully works and each time the page "loads", the
DataGrid gets a new row (image only shows one). So far, so good.

The thought behind this structure is that the user needs to able to enter in multiple line items as needed, so here I'm letting them add them one at a
time instead hard coding X number of blank line items ...X number of rows of form fields (the validation for that would be a nightmare).

All works fine. Once the SaveData sub is fired, I set a variable in
ViewState and enable the two additional buttons at the button and change my INSERT statement to UPDATE statement for the header data. One of the newly enabled buttons is a "Delete" button. I wanted to allow the user to Delete all the records and start over with a fresh form.

Here's the problem (finally): My delete sub works just fine but by clicking the "Delete" button causes the form to post and all of the field validators are triggered. Instead of deleting the data and refreshing the page as my
sub should do, I'm prompted to provide data in all the required fields! In short, my form thinks my delete button is a submit button instead of just a plain button.

Is there anyway to work around this? I see that you cannot define exactly
what TYPE of button it is using asp:button such as type="button" or
type="submit". So how can I use a button to call my DeleteRecords sub
without being pestered by the form validation controls?

TIA!!!

-Shane

Nov 18 '05 #2
Yeah! Thanks! Boy that was easy.

I seem to have trouble remembering all the attributes, namespaces, etc for
all this .NET stuff. Is there a good book which documents and diagrams all
this stuff out? I have ASP.NET Unleashed by SAMS but I'd like to get my
hands on some good reference "charts" and diagrams which show ALL the
attributes for ALL the web controls, etc....

=)
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Shane,

You'll love how easy this is!

On your delete button just set it's "CausesValidation" property to false.
Then it won't trigger the validators.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"D. Shane Fowlkes" <sh**********@h-o-t-m-a-i-l.com> wrote in message
news:Oj*************@tk2msftngp13.phx.gbl...
Sorry for the length of this post.

I have created a rather complex form which has a header/line item (parent and child records) structure. It's for an intranet. A screenshot can be seen here: http://www.drpt.virginia.gov/temp1.gif All the fields on this form have validation controls on them so they can not submit the form unless
all fields are completed and some fall within a specified numeric range.

When the form first is loaded, there are two buttons as shown in the link above that are disabled by default. They become enabled once the form is submitted.

Here's the basic concept. The user fills out the form and clicks Save

Data.
The form is using ViewState so when the form is submitted (Save Data), the page posts to itself and the data "sticks" in the fields. The Save Data
button fires a sub routine which writes the data in the top section of the form to one table and the "line item" section to another table. When the data is successfully saved as shown in
http://www.drpt.virginia.gov/temp2.gif, a confirmation label is shown on

the
page and a DataGrid displays the new line item. The user can then add a
second, third or however many line items by simply filling in the fields
(and even changing the header information if needed) and clicking Save

Data
each time. My sub successfully works and each time the page "loads", the DataGrid gets a new row (image only shows one). So far, so good.

The thought behind this structure is that the user needs to able to enter in
multiple line items as needed, so here I'm letting them add them one at
a time instead hard coding X number of blank line items ...X number of rows of
form fields (the validation for that would be a nightmare).

All works fine. Once the SaveData sub is fired, I set a variable in
ViewState and enable the two additional buttons at the button and change my
INSERT statement to UPDATE statement for the header data. One of the

newly
enabled buttons is a "Delete" button. I wanted to allow the user to

Delete
all the records and start over with a fresh form.

Here's the problem (finally): My delete sub works just fine but by

clicking
the "Delete" button causes the form to post and all of the field

validators
are triggered. Instead of deleting the data and refreshing the page as

my sub should do, I'm prompted to provide data in all the required fields!

In
short, my form thinks my delete button is a submit button instead of just a
plain button.

Is there anyway to work around this? I see that you cannot define

exactly what TYPE of button it is using asp:button such as type="button" or
type="submit". So how can I use a button to call my DeleteRecords sub
without being pestered by the form validation controls?

TIA!!!

-Shane


Nov 18 '05 #3
Shane,

I don't have any books to recommend. I have some of the same ones you
mentioned but I don't have any reference books. I just find myself using
google and the forums for most of this type of stuff.

If you find a good one please let me know!

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"D. Shane Fowlkes" <sh**********@h-o-t-m-a-i-l.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Yeah! Thanks! Boy that was easy.

I seem to have trouble remembering all the attributes, namespaces, etc for
all this .NET stuff. Is there a good book which documents and diagrams all
this stuff out? I have ASP.NET Unleashed by SAMS but I'd like to get my
hands on some good reference "charts" and diagrams which show ALL the
attributes for ALL the web controls, etc....

=)
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Shane,

You'll love how easy this is!

On your delete button just set it's "CausesValidation" property to false.
Then it won't trigger the validators.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"D. Shane Fowlkes" <sh**********@h-o-t-m-a-i-l.com> wrote in message
news:Oj*************@tk2msftngp13.phx.gbl...
Sorry for the length of this post.

I have created a rather complex form which has a header/line item (parent and child records) structure. It's for an intranet. A screenshot can be seen here: http://www.drpt.virginia.gov/temp1.gif All the fields on this form have validation controls on them so they can not submit the form unless
all fields are completed and some fall within a specified numeric range.
When the form first is loaded, there are two buttons as shown in the link above that are disabled by default. They become enabled once the form is submitted.

Here's the basic concept. The user fills out the form and clicks Save

Data.
The form is using ViewState so when the form is submitted (Save Data), the page posts to itself and the data "sticks" in the fields. The Save Data button fires a sub routine which writes the data in the top section of the form to one table and the "line item" section to another table. When the data is successfully saved as shown in
http://www.drpt.virginia.gov/temp2.gif, a confirmation label is shown on the
page and a DataGrid displays the new line item. The user can then add
a second, third or however many line items by simply filling in the fields (and even changing the header information if needed) and clicking Save

Data
each time. My sub successfully works and each time the page "loads", the DataGrid gets a new row (image only shows one). So far, so good.

The thought behind this structure is that the user needs to able to enter
in
multiple line items as needed, so here I'm letting them add them one

at a time instead hard coding X number of blank line items ...X number of rows
of
form fields (the validation for that would be a nightmare).

All works fine. Once the SaveData sub is fired, I set a variable in
ViewState and enable the two additional buttons at the button and
change my
INSERT statement to UPDATE statement for the header data. One of the

newly
enabled buttons is a "Delete" button. I wanted to allow the user to

Delete
all the records and start over with a fresh form.

Here's the problem (finally): My delete sub works just fine but by

clicking
the "Delete" button causes the form to post and all of the field

validators
are triggered. Instead of deleting the data and refreshing the page
as my sub should do, I'm prompted to provide data in all the required
fields! In
short, my form thinks my delete button is a submit button instead of

just
a
plain button.

Is there anyway to work around this? I see that you cannot define

exactly what TYPE of button it is using asp:button such as type="button" or
type="submit". So how can I use a button to call my DeleteRecords sub
without being pestered by the form validation controls?

TIA!!!

-Shane



Nov 18 '05 #4

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

Similar topics

5
by: Matt | last post by:
How can I implement multiple buttons for a form like - submit, cancel, logout etc. Thanks. Matt
2
by: Matt | last post by:
The ASP page has multiple buttons, and when the user clicks different buttons, it will submit the form data to different URLs. My first approach was to use BUTTON type, and triggers javascript...
2
by: iam247 | last post by:
Hi I have an ASP form which only includes an option list. The list is dynamically created but includes a default value, which is an instruction "Select a group". The code is shown at bottom....
2
by: D | last post by:
Most of my web forms have multiple buttons (Proceed, Back, link buttons for various screens, etc.) It looks like, say a required field validator for example, gives me an error message no matter...
1
by: Sarmatia | last post by:
I had a page working. The user moves data around the page - to and from different ListBoxes and could save the changes with a click of a button. Sounds easy, but *that's* a whole other nightmare. ...
9
by: mosscliffe | last post by:
I am struggling to find a python example of the scenario - I have. I have a python script, which generates a page with a search button (actually an input field). The data from the above...
0
by: jianxin9 | last post by:
Hi everyone, I don't have a lot of experience with ASP and I was hoping someone could help me. I want to use our ASP form along with some javascript code to create a form where our patrons can...
1
Fary4u
by: Fary4u | last post by:
Hi Guys i'm trying to upload a file, i've tried 3 different methods but still not work out i don't know how to over come this problem hidden file value, multiple form or popup uploading. 1-...
0
by: fperri | last post by:
Hi, I'm doing my first site in ASP.net. I have a form that has two list boxes where they can select a value in one and click a button to select and it moves it to the other listbox. I got this to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.