Hi All
I just created a simple hello world page in my Dev. sever(.NET Framework SDK
installed) and working fine.
But when I port it to my Prod. Server(only .NET Framework Redistributable
installed) it gives me "Server Application Unavailable" Error message. It
again says I can find error details in event log of web server. Where it
resides?
Thanks
Rajesh Bhaskaran
Hi,
I intstalled .NET Redistributable on my Production
server. When I run my Hello World! aspsx page, it throws the error
"Server Application Unavailable. The web application you are attempting on
this web server is currently unavailable. please hit refresh button on your
web browser or retry your request
Administrator Note:An error message detailing the cause of this specific
request failure can be found in th esystem event log of the web server.
please review this log entry discover what cause this error to occur"
I checked the event log and didn't find any .NET related errors
I intstalled SP-3 and MDAC 2.7 before installing .NET Redistributable. I
haven't changed any setting in IIS. I just created a virtual application
under my root directory and set file level permission for ASPNET account
(all permissions). I didn't crate any files except the test.aspx
My server is exposed to internet
code test.aspx is like
<%@ Page language="c#" %>
<html>
<form id="form1" runat="server" >
<asp:label id="lbl1" runat="server" Text="Hello World!" />
</form>
</html>
Can you help me?
Thanks
Rajesh Bhaskaran