Strange Phenom

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey all,

I deployed an asp.net app that has only 2 forms in it to a hosting service.
When I surfed to it on from xp machine that app worked fine.
However, if I surf from a pc that has win98 on it but all the latest service
packs on it, i can get to the first form but when i select a record to goto
the 2nd form it just posts back to the 1st form. Any ideas?

thanks,
rodchar
 
I had simular problems before and it always came down to me having to run
the following commands on my server:

aspnet_regiis.exe -i
aspnet_regiis.exe -c

This would correct the ISAPI mappings and the WebValidation.js file for the
framework version that I compiled the application with. Since it is a
hosting situation, and I doubt you will able to have those commands run, you
just might check which version your hosting service is using and make sure
you compile your application using that version of the framework.

HTH

-Chris
 
Thank you.

Chris Austin said:
I had simular problems before and it always came down to me having to run
the following commands on my server:

aspnet_regiis.exe -i
aspnet_regiis.exe -c

This would correct the ISAPI mappings and the WebValidation.js file for the
framework version that I compiled the application with. Since it is a
hosting situation, and I doubt you will able to have those commands run, you
just might check which version your hosting service is using and make sure
you compile your application using that version of the framework.

HTH

-Chris
 
Back
Top