Any way to include an HTML form with server-side controls?

P

Paul

Hi all,

I have a page with a mutli view control where one of the views needs to
contain a separate HTML get form with a submit button that goes to
another page. In ASP this was no problem - there was no container form
and it just went to the target page. In ASP .NET however, there is a
container form and having an embedded form breaks the page. Adding
another server-side form just gets the "A page can have only one
server-side Form tag" runtime error.

I need to have some server-side logic in the HTML form to determine
whether it is displayed or not. I can use the same form and catch the
server-side Click event for the other button, but that relies on
javascript to wire up a default button for the main form.

How can I achive this in .NET *without using javascript*?

Thanks,

Paul
 
L

Laurent Bugnion

Hi,
Hi all,

I have a page with a mutli view control where one of the views needs to
contain a separate HTML get form with a submit button that goes to
another page. In ASP this was no problem - there was no container form
and it just went to the target page. In ASP .NET however, there is a
container form and having an embedded form breaks the page. Adding
another server-side form just gets the "A page can have only one
server-side Form tag" runtime error.

I need to have some server-side logic in the HTML form to determine
whether it is displayed or not. I can use the same form and catch the
server-side Click event for the other button, but that relies on
javascript to wire up a default button for the main form.

How can I achive this in .NET *without using javascript*?

Thanks,

Paul

The "one form" limitation is a real PITA.

Does it absolutely have to be a button? Changing a button's default
action without using any JavaScript is AFAICS impossible...

If you can use a hyperlink instead, then it's easy to make a GET

http://www,domain.com/page.aspx?param1=value1&param2=value2

Why can't you use any JavaScript at all?

HTH,
Laurent
 
P

Paul

Hi Laurent,

I have a general UI preference of using buttons for attracting a user's
attention. I want to avoid javascript so that I know it will work for
everyone.

Is a link the only other non-javascript alternative?

Thanks,

Paul
 
B

Bart Van Hemelen

Paul said:
I have a general UI preference of using buttons for attracting a user's
attention. I want to avoid javascript so that I know it will work for
everyone.

You could use CSS to make the link look like a button, or use an image
instead of text for the link.
 
L

Laurent Bugnion

Hi,
Hi Laurent,

I have a general UI preference of using buttons for attracting a user's
attention. I want to avoid javascript so that I know it will work for
everyone.

Is a link the only other non-javascript alternative?

Thanks,

Paul

Laurent Bugnion wrote:

In that case I recommend using Bart's proposed solution (an image
looking like a button). A strictly no-JavaScript solution will only be
able to submit the form using the target defined in the "action" attribute.

Non-JavaScript enabled solutions must rely on the most basic HTTP
mechanisms only, and they are very primitive. ASP.NET (with the "one
form" restriction) made it even more restrictive, unfortunately.

HTH,
Laurent
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,022
Latest member
MaybelleMa

Latest Threads

Top