Kalpesh has a valid point. If you find that they're both running the same
version you might need to uninstall and reinstall the client side scripts on
your server using aspnet_regiis.exe. You can do that by browsing in a dos
prompt to the framework version folder, usually
C:\windows\Microsoft.Net\Framework\vX.X.XXXXX and then running a couple of
commands to uninstall and reinstall. Here are the commands assuming you're
running this on .Net version 2.0:
C:\>cd windows\Microsoft.Net\Framework\v2.0.50727
C:\>aspnet_regiis -e <--This uninstalls scripts
C:\>aspnet_regiis -c <--This installs scripts
C:\>iisreset <--This restarts IIS, sites will go down temporarily.
If that doesn't work then you may do the following but after making sure
that all sites on this webserver are .Net 2.0 compatible. The following will
uninstall all versions of the framework from this machine and then reinstall
2.0 to all sites.
C:\>cd windows\Microsoft.Net\Framework\v2.0.50727
C:\>aspnet_regiis -ua <--This uninstalls ASP.Net versions
C:\>aspnet_regiis -r <--This installs ASP.Net 2.0 to all sites
C:\>iisreset <--This restarts IIS, sites will go down temporarily.
Note that this procedure usually takes less than a minute, but if you're not
sure about this or if this is a production server you might need to test this
on a dev box or your workstation, not because it is a problematic process,
not at all, but just so you are confident that you can recover. I won't
recommend the second process if you have 1.1 and 2.0 apps on the same
machine, although you can still do it but this would be missing other
non-generic steps in order to recover the 1.1 apps to working condition and I
don't have enough information to write you these commands. Please let me know
whether this helps or not.
Thanks,
--
Mohamad Elarabi
MCP, MCTS, MCPD.
"siddhath" wrote:
> server a , client A ==>does ot work
>
> Server B , client A ===> works
|