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

applications not posting back

Here's an interesting one that has me stumped. I have several ASP.NET
applications writen in VB.NET that stopped posting back on click of a
button. Nothing has changed in the code or the environment, it just stopped
working. Here's my config:

Production:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Dev:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Compiling workstation:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
WinXP SP2, IIS5.1
VS.NET 2003

If I publish the application to my development environment, it works
fine...publish to production, and nothing happens. Tested with browsers:
IE6.01, IE5.5

My first instinct is to find what changed, but nothing has been done to
either envirnonment since applying SP1 of the framework.

I've tried rebooting, rinstalling the Framework, reapplying SP1, recreating
the application in IIS... no change... I'm out of ideas and the knowledge
base doesn't seem to have anything.

Any ideas?

Here's and interesting twist... it's only the VB apps... C# apps, at the
moment, are behaving.

-Jason
Nov 19 '05 #1
4 1258
Sounds funny. Do these forms use the "validators"? If so then maybe the
aspnet_client virtual got hosed...

"Jason Penniman" wrote:
Here's an interesting one that has me stumped. I have several ASP.NET
applications writen in VB.NET that stopped posting back on click of a
button. Nothing has changed in the code or the environment, it just stopped
working. Here's my config:

Production:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Dev:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Compiling workstation:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
WinXP SP2, IIS5.1
VS.NET 2003

If I publish the application to my development environment, it works
fine...publish to production, and nothing happens. Tested with browsers:
IE6.01, IE5.5

My first instinct is to find what changed, but nothing has been done to
either envirnonment since applying SP1 of the framework.

I've tried rebooting, rinstalling the Framework, reapplying SP1, recreating
the application in IIS... no change... I'm out of ideas and the knowledge
base doesn't seem to have anything.

Any ideas?

Here's and interesting twist... it's only the VB apps... C# apps, at the
moment, are behaving.

-Jason

Nov 19 '05 #2
Another developer on my team recently experienced this issue (happend to be
C#, ASP.Net) and it was specific to pages with validation controls.

Running through IDE or Internet Explorer, Postback would not work for him.
The exact same code, running on other machines worked fine. The resolution
ended up being reinstalling .Net Framework SP1 on his machine.

It seems to be related to the .js files located in
aspnet_client\system_web\1_1_4322. First off, make sure that your prod
server has a the above folder in IIS. If the folder is there and you're
still not experiencing problems, try copying working .js files from your
development server and replacing the prod server files. Please back up the
prod server files prior to doing this so you can return to your original
state.

I've also noticed that if you're not running a site out of the Default Site
then you may need to create a vdir in your site that maps to the
aspnet_client folder in the default site so that the .js files are wire up.

JP

"Jason Penniman" wrote:
Here's an interesting one that has me stumped. I have several ASP.NET
applications writen in VB.NET that stopped posting back on click of a
button. Nothing has changed in the code or the environment, it just stopped
working. Here's my config:

Production:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Dev:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Compiling workstation:
ASP.NET 1.0
..NET Frameworks 1.1 SP1
WinXP SP2, IIS5.1
VS.NET 2003

If I publish the application to my development environment, it works
fine...publish to production, and nothing happens. Tested with browsers:
IE6.01, IE5.5

My first instinct is to find what changed, but nothing has been done to
either envirnonment since applying SP1 of the framework.

I've tried rebooting, rinstalling the Framework, reapplying SP1, recreating
the application in IIS... no change... I'm out of ideas and the knowledge
base doesn't seem to have anything.

Any ideas?

Here's and interesting twist... it's only the VB apps... C# apps, at the
moment, are behaving.

-Jason

Nov 19 '05 #3
Thanks guys... reinstalling the aspnet client and reaplying SP1 did the
trick....

Someone should get this into a KB article...

"Jason Penniman" <jp*******@actcci.com> wrote in message
news:e0**************@TK2MSFTNGP15.phx.gbl...
Here's an interesting one that has me stumped. I have several ASP.NET
applications writen in VB.NET that stopped posting back on click of a
button. Nothing has changed in the code or the environment, it just
stopped working. Here's my config:

Production:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Dev:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Compiling workstation:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
WinXP SP2, IIS5.1
VS.NET 2003

If I publish the application to my development environment, it works
fine...publish to production, and nothing happens. Tested with browsers:
IE6.01, IE5.5

My first instinct is to find what changed, but nothing has been done to
either envirnonment since applying SP1 of the framework.

I've tried rebooting, rinstalling the Framework, reapplying SP1,
recreating the application in IIS... no change... I'm out of ideas and the
knowledge base doesn't seem to have anything.

Any ideas?

Here's and interesting twist... it's only the VB apps... C# apps, at the
moment, are behaving.

-Jason

Nov 19 '05 #4
I have seen this problem before and it was to do with the WebUIValidation.js
file in ASPNET_CLIENT folder

Specifically the function

function ValidatorCommonOnSubmit() {
event.returnValue = !Page_BlockSubmit;
Page_BlockSubmit = false;
return event.returnValue;
}

Sometimes, this function has no return value, (I think that it is after
doing an update of some sort). If you get this problem again, take a look at
this function, my one originally was just

function ValidatorCommonOnSubmit() {
event.returnValue = !Page_BlockSubmit;
Page_BlockSubmit = false;
}

I placed return event.returnValue; in the script and everything started
working again!!

Weird huh?
Cheers
Mark

"Jason Penniman" <jp*******@actcci.com> wrote in message
news:OB**************@TK2MSFTNGP12.phx.gbl...
Thanks guys... reinstalling the aspnet client and reaplying SP1 did the
trick....

Someone should get this into a KB article...

"Jason Penniman" <jp*******@actcci.com> wrote in message
news:e0**************@TK2MSFTNGP15.phx.gbl...
Here's an interesting one that has me stumped. I have several ASP.NET
applications writen in VB.NET that stopped posting back on click of a
button. Nothing has changed in the code or the environment, it just
stopped working. Here's my config:

Production:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Dev:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
Win2K SP4 all hotfixes applied, IIS 5.0

Compiling workstation:
ASP.NET 1.0
.NET Frameworks 1.1 SP1
WinXP SP2, IIS5.1
VS.NET 2003

If I publish the application to my development environment, it works
fine...publish to production, and nothing happens. Tested with browsers: IE6.01, IE5.5

My first instinct is to find what changed, but nothing has been done to
either envirnonment since applying SP1 of the framework.

I've tried rebooting, rinstalling the Framework, reapplying SP1,
recreating the application in IIS... no change... I'm out of ideas and the knowledge base doesn't seem to have anything.

Any ideas?

Here's and interesting twist... it's only the VB apps... C# apps, at the
moment, are behaving.

-Jason


Nov 19 '05 #5

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

Similar topics

52
by: Harlan Messinger | last post by:
Can you help me figure out what to do about popups? Sometimes we develop web applications where popups make very good sense for precisely the same reasons they make sense in traditional...
5
by: john | last post by:
I searched http://www.sellsbrothers.com. and could not find anything about this subject. How do I make C# User Controls Visible to Visual Basic 6.0 Applications? Thanks, John
5
by: Joe | last post by:
I have an application which runs in a non-secure environment. I also have an application that runs in a secure environment (both on the same machine). Is there any way to share the session data for...
7
by: =?Utf-8?B?Qi4gQ2hlcm5pY2s=?= | last post by:
I did my MCAD sometime ago in 1.1, using the 305 manual. I've since moved up to VS 2005. I've created perhaps a half dozen Dot Net 2.0 web applications. (Click on the Create Project link within...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...
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...

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.