Browser Problem

Status
Not open for further replies.

viraj24

Right off the assembly line
Hello Every one,
I have developed website using asp.net. its version is 1.1 and framework which i have used is 2003. I have created reports using crystal reports9.0 and my database is sql server 2000.

I am facing very ridiclues problem... :(
My Website is working properly using IE and FireFox Browsers..with Local Server. But after Uploading Site on Web Server, I found My Website is not working with IE..Clicking on Html Controls, like buttons, they give response..but asp buttons are not fired...
I mean when I click on Login Button after inserting username & password..nothing happens...Page is not redirected to the next page...

While all these ..working properly with FireFox.....

Can Anybody Help Me Out????
I will bw very much thakfull.....

Thanks,
Viraj
:)
 
OP
V

viraj24

Right off the assembly line
hello every one...

I have got my solution......

I added 1 line at the end of function ValidatorCommonOnSubmit() function
in WebUIValidation.js file.....
i added return event.returnValue;

here is the function...

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

thanks...
viraj :D
 
Status
Not open for further replies.
Top Bottom