473,385 Members | 1,311 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,385 software developers and data experts.

Buttons not responding in freshly posted live system; works in dev environment

EO
I'm stumped. I have some asp.net pages that work just fine in the
development environment.

But in production, none of the submit buttons are doing anything. I don't
even get a page_load. No browser window indication of anything happening, it
just sits there.

Might I have forgotten to post something needed? Turning trace on is useless
since I just get messages from the original page load.

-EO
Nov 19 '05 #1
4 1075
You might need to repair the IIS mappings.
Here's the instructions on how to do that:
http://SteveOrr.net/FAQ/3in1.aspx
http://support.microsoft.com/default...;EN-US;q306005

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"EO" <me@home.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I'm stumped. I have some asp.net pages that work just fine in the
development environment.

But in production, none of the submit buttons are doing anything. I don't
even get a page_load. No browser window indication of anything happening,
it just sits there.

Might I have forgotten to post something needed? Turning trace on is
useless since I just get messages from the original page load.

-EO

Nov 19 '05 #2
EO
Ouch;
a) This is a shared hosting service, to which I don't have server console
access.
b) The buttons show up, they just don't do anything.

I'm reviewing the site to ensure there's no rogue dll's in long-forgotten
bin directories.
I also asked the isp to retart the site - they say it can't be done on their
server.

With trace on, and a message showing inside the "if not ispostback", I show
a trace showing it is not a postback. This message shows all day long no
matter how much I click the submit buttons, and when I click a submit button
there is no indication that the browser window cycles at all.

Still stumped.

-EO

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:OC**************@tk2msftngp13.phx.gbl...
You might need to repair the IIS mappings.
Here's the instructions on how to do that:
http://SteveOrr.net/FAQ/3in1.aspx
http://support.microsoft.com/default...;EN-US;q306005

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"EO" <me@home.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I'm stumped. I have some asp.net pages that work just fine in the
development environment.

But in production, none of the submit buttons are doing anything. I don't
even get a page_load. No browser window indication of anything happening,
it just sits there.

Might I have forgotten to post something needed? Turning trace on is
useless since I just get messages from the original page load.

-EO


Nov 19 '05 #3
EO
FYI, solution found:

The problem is that I had implemented validator controls for the first time.
The isp apparently has a different set of javascripts than are on my
development box. Therefore, no page ever validated from my browser, and
therefore no submit button ever submitted.

All validator controls were reset to disable client side validation and the
pages are happy.

Is it normal to not rely on client side validation? I'm using IE6!

-EO
"EO" <me@home.com> wrote in message
news:uj**************@TK2MSFTNGP12.phx.gbl...
Ouch;
a) This is a shared hosting service, to which I don't have server console
access.
b) The buttons show up, they just don't do anything.

I'm reviewing the site to ensure there's no rogue dll's in long-forgotten
bin directories.
I also asked the isp to retart the site - they say it can't be done on
their server.

With trace on, and a message showing inside the "if not ispostback", I
show a trace showing it is not a postback. This message shows all day long
no matter how much I click the submit buttons, and when I click a submit
button there is no indication that the browser window cycles at all.

Still stumped.

-EO

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:OC**************@tk2msftngp13.phx.gbl...
You might need to repair the IIS mappings.
Here's the instructions on how to do that:
http://SteveOrr.net/FAQ/3in1.aspx
http://support.microsoft.com/default...;EN-US;q306005

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"EO" <me@home.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I'm stumped. I have some asp.net pages that work just fine in the
development environment.

But in production, none of the submit buttons are doing anything. I
don't even get a page_load. No browser window indication of anything
happening, it just sits there.

Might I have forgotten to post something needed? Turning trace on is
useless since I just get messages from the original page load.

-EO



Nov 19 '05 #4
EO, my guess is that your problem is that you're missing the .NET javascript
library.

Try locating the aspnet_client subdir on your dev machine, and make a copy
into your application directory in production. If you don't have these
scripts, button postback doesn't seem to work.

Also note that there are two versions of the
/aspnet_client/system_web/1_1_4322 scripts in existance; I suspect the
versions for Windows 2003 are different than those that ship with the
standard .NET 1.1 install (?). If that's the case, try to get a copy of the
/aspnet_client dir from your hosting provider, for the OS they're using.
That should work ok.

/// M
"EO" <me@home.com> wrote in message
news:uj**************@TK2MSFTNGP12.phx.gbl...
Ouch;
a) This is a shared hosting service, to which I don't have server console
access.
b) The buttons show up, they just don't do anything.

I'm reviewing the site to ensure there's no rogue dll's in long-forgotten
bin directories.
I also asked the isp to retart the site - they say it can't be done on their server.

With trace on, and a message showing inside the "if not ispostback", I show a trace showing it is not a postback. This message shows all day long no
matter how much I click the submit buttons, and when I click a submit button there is no indication that the browser window cycles at all.

Still stumped.

-EO

"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:OC**************@tk2msftngp13.phx.gbl...
You might need to repair the IIS mappings.
Here's the instructions on how to do that:
http://SteveOrr.net/FAQ/3in1.aspx
http://support.microsoft.com/default...;EN-US;q306005

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"EO" <me@home.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I'm stumped. I have some asp.net pages that work just fine in the
development environment.

But in production, none of the submit buttons are doing anything. I don't even get a page_load. No browser window indication of anything happening, it just sits there.

Might I have forgotten to post something needed? Turning trace on is
useless since I just get messages from the original page load.

-EO



Nov 19 '05 #5

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

Similar topics

2
by: Andy Fish | last post by:
Hi, I am developing an asp.net app in C# on winxp pro. During a heavy development/debugging session, very occasionally IIS will seem to stop responding to asp.net requests. Other non-asp.net...
1
by: =?Utf-8?B?SEQ=?= | last post by:
hi, i recently bought a new laptop with vista home premium and downloaded windows live messenger but about 3 seconds after login, the program stops responding and needs to close down. I see a...
8
by: mark4asp | last post by:
How can I get spans which look like buttons. These buttons have a fixed height (24px), variable width, a thin (1px) solid border and a background image. The back-ground image is a slice 24px...
11
by: Twayne | last post by:
Hi, Newbie to PHP here, no C or other relevant background, so pretty niave w/r to the nuances etc. but I think this is pretty basic. XP Pro, SP2+, PHP 4.4.7, XAMPP Local Apache Server...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.