SQL access

  • Thread starter Thread starter Steffen Loringer
  • Start date Start date
S

Steffen Loringer

Hi group

under what process is my ASP.NET application executed on a
WindowsServer2003 system with IIS6.0. I would normally expect to find a
process like asp_wp.exe but it is not there!

Thanks
Steffen
 
hi steffen ,
In window server 2003 the aspnet worker process is named w3wp.exe. check
that out.
 
Your post title mentions SQL. Are we to assume that the reason you're asking
is to connect to a SQL Server? If so, and you want the ASP.Net user account
to be able to connect, make sure that your Connection String specifies using
a Trusted Connection, and that, if the SQL Server is on a different machine
in the same domain, that you use a domain account to run your ASP.Net app.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 

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

Back
Top