Forms not submitting in some browsers! Help!

  • Thread starter Thread starter msnews.microsoft.com
  • Start date Start date
M

msnews.microsoft.com

I have a client who says the form does not submit. I'm fairly new to dot net
and not sure why this would be. Is dot net not compatible with certain
bowsers? I notice the controls tend to rely on JavaScript. I'm very
concerned, since I'm deep into other projects using simple .NET forms and if
this is going to happen -- I WANT NO PART OF DOT NET! Can anyone help me?

This is the page -- they are able to select. It's the last part of form
"Submit Application" that does not function for them. I've only been able to
test on the newer IE and Netscape and it works fine.

https://secure14.easycgi.com/townhalllectures/tickets.aspx
 
as standard html only posts back on <input type=button> and <input
type=image> only the <asp:button> can postback without javascript support.

if you want your site to run without javascript, just limit yourself to
these options. note: - don't use the postback form of links.

its easy to test your site, just turn javascript support off in your
browser.

-- bruce (sqlwork.com)
 
That's definitely not it, because they are able to get to the second page of
my form which is a post-back JavaScript. They claim to be using IE 6.XX.
It's very odd that submit does not work on their machine!!

Max
 
Works in Opera. Of course, Opera always causes postback validation, not
the client-side validation like IE.
 

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

Back
Top