ajax in iis7.0 not work

  • Thread starter Thread starter newkgb
  • Start date Start date
N

newkgb

hi
my system is vista and i use iis7.0 for my test website.
but my ajax project not work, ? please tell me why
 
newkgb schreef:
hi my system is vista and i use iis7.0 for my test website.
but my ajax project not work, ? please tell me why

Hi,

Are you sure your IE runs JavaScript?
Make a minimal page with:

<html>
<head>
<script type="text/javascript">
alert('HI!');
</script>
</head>
<body>bla</body>
</html>

Does that say Hi on loading?

If it does, your Javascript is enabled, and chances are the Ajax code of
your page in question sucks.
Impossible to tell without more information.

Regards,
Erwin Moller
 
tarun_ricm said:
i am also having the same problem..
The ajax is working properly on IIS 6.0 but the same thing is not
working on IIS 7.0. I am using AJAX.dll.
I have copied the same dll in bin folder and in web.config
i am suing

<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx"
type="Ajax.PageHandlerFactory, Ajax"/>

</httpHandlers> in <system.web> tag.

How is this a Vista problem? This is an IIS7 issue. Maybe, you need to
post to MS.Public.Inetserver.IIS and/or since you're mentioning the
*Bin* folder, you need to post to a MS.Public.dotnet.framework NG where
there would be users dealing with Ajax and IIS7.
 
Back
Top