Not able to run the asp.net from IIS server?

M

Manish

Hi friends iam using IIS server to run my asp.net program. I can
compile and run from the asp.net tool and also i can connect with sql
server. when i try to run from the IIS server i was not able to
connect with sql server and I am getting error as page cannot be
display. but i can run the static page(without using sql server
connection) from the same IIS server. I think im mistaking in the sql
server connection. can anyone help me out.
 
D

David Wier

Have you got the correct version of ASP.Net selected in IIS?
Is the directory where you application resides a virtual directory which is
recognizable in IIS?

--

David Wier
http://aspnet101.com
http://iWritePro.com - One click PDF, convert .doc/.rtf/.txt to HTML with no
bloated markup
 
M

Manish

Iam using asp.net 2.0 and i have the file in the wwwroot folder. still
im not getting the output. But in the same system i can run the static
page.
 
J

Juan T. Llibre

It seems that you are saying that when you run your app
in your computer's development server the app runs OK,
but that when you run the app in your internet server, it doesn't run.

Is that correct ?

Please post the error message, if there's one.

re:
!> I think im mistaking in the sql server connection

Connection strings vary according to the SQL server version used.

Are you using SQL Server 2005 or 2000 ? Is your internet server using SQL Server 2005 or 2000 ?
Does your development server run the same version of SQL server as your internet server does ?

Letting us know that info will help you get an answer.

It would also help if you would post the sql connection
you use in the development server, which works OK.

Please substitute the username and the password in the connection string.
 
J

Juan T. Llibre

Can you run simple .aspx pages ?

Please save this code as "identity.aspx" in the wwwroot folder,
run it and let us know what it returns :

identity.aspx:
==========
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
==========
 
D

David Wier

Check your Application Event Log
After I set up VS.Net to use Localhost one time, I kept getting some odd
errors
I searched the net for the specific errors and got it working..

David Wier
http://aspnet101.com
http://iWritePro.com - One click PDF, convert .doc/.rtf/.txt to HTML with no
bloated markup
 
H

Hans Kesting

Manish explained :
Hi friends iam using IIS server to run my asp.net program. I can
compile and run from the asp.net tool and also i can connect with sql
server. when i try to run from the IIS server i was not able to
connect with sql server and I am getting error as page cannot be
display. but i can run the static page(without using sql server
connection) from the same IIS server. I think im mistaking in the sql
server connection. can anyone help me out.

Do you use integrated security for the connection? The account an
asp.net site runs under is a local account that is not known on the sql
server machine. Therefore we use sqlserver authentication (needs to be
enabled explicitly).

Hans Kesting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top