473,287 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

Publishing WebForms to Production System

A P
Hi!

I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to
our server. I try to copy (thru explorer) the files but it didn't work! I
receive Runtime Error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----

Runtime Error
Description: An application error occurred on the server. The current custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable
on remote machines, please create a <customErrors> tag within a "web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

What did I do wrong? Or what is the proper way of publishing .Net Web
documents to the production server?
Nov 19 '05 #1
8 1811
You are getting that message, not because you've
published your files incorrectly, but because you have
an error in your default application's page.

In order to see the source of that error, you need
to modify your web.config file as instructed :

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

and upload the modified web.config file to your server.

*Then* you will be able to see what the source for
your error is, unless your ISP doesn't allow for
application errors to be displayed.

The only way to find out, is to upload the
modified web.comfig file to the server,
and trying to access your application again.


Juan T. Llibre
ASP.NET MVP
===========
"A P" <ap@textguru.ph> wrote in message
news:uz**************@tk2msftngp13.phx.gbl...
Hi!

I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to
our server. I try to copy (thru explorer) the files but it didn't work! I
receive Runtime Error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----

Runtime Error
Description: An application error occurred on the server. The current
custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could,
however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be
viewable
on remote machines, please create a <customErrors> tag within a
"web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

What did I do wrong? Or what is the proper way of publishing .Net Web
documents to the production server?

Nov 19 '05 #2
A P
Its already Off but same error message. I've tried opening the page on the
server and I find different error message. Btw, here is my current WebConfig
File:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>
<system.web>

<!-- DYNAMIC DEBUG COMPILATION

Set compilation debug="true" to insert debugging symbols (.pdb information)

into the compiled page. Because this creates a larger file that executes

more slowly, you should set this value to true only when debugging and to

false at all other times. For more information, refer to the documentation
about

debugging ASP.NET files.

-->

<compilation defaultLanguage="vb" debug="true" />

<!-- CUSTOM ERROR MESSAGES

Set customErrors mode="On" or "RemoteOnly" to enable custom error messages,
"Off" to disable.

Add <error> tags for each of the errors you want to handle.

-->

<customErrors mode="Off" />

<!-- AUTHENTICATION

This section sets the authentication policies of the application. Possible
modes are "Windows",

"Forms", "Passport" and "None"

-->

<authentication mode="Windows" />

<!-- AUTHORIZATION

This section sets the authorization policies of the application. You can
allow or deny access

to application resources by user or role. Wildcards: "*" mean everyone, "?"
means anonymous

(unauthenticated) users.

-->

<authorization>

<allow users="*" /> <!-- Allow all users -->

<!-- <allow users="[comma separated list of users]"

roles="[comma separated list of roles]"/>

<deny users="[comma separated list of users]"

roles="[comma separated list of roles]"/>

-->

</authorization>

<!-- APPLICATION-LEVEL TRACE LOGGING

Application-level tracing enables trace log output for every page within an
application.

Set trace enabled="true" to enable application trace logging. If
pageOutput="true", the

trace information will be displayed at the bottom of each page. Otherwise,
you can view the

application trace log by browsing the "trace.axd" page from your web
application

root.

-->

<trace enabled="false" requestLimit="10" pageOutput="false"
traceMode="SortByTime" localOnly="true" />

<!-- SESSION STATE SETTINGS

By default ASP.NET uses cookies to identify which requests belong to a
particular session.

If cookies are not available, a session can be tracked by adding a session
identifier to the URL.

To disable cookies, set sessionState cookieless="true".

-->

<sessionState

mode="InProc"

stateConnectionString="tcpip=127.0.0.1:42424"

sqlConnectionString="data source=127.0.0.1;user id=sa;password="

cookieless="false"

timeout="20"

/>

<!-- GLOBALIZATION

This section sets the globalization settings of the application.

-->

<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>

</configuration>

*****************

Here is the error message that I receive from the server's screen:

Server Error in '/' Application.
----------------------------------------------------------------------------
----

Access denied to 'C:\WWW_TestSystem\'. Failed to start monitoring file
changes.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Access denied to
'I:\WWW_TestSystem\'. Failed to start monitoring file changes.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
I already assign Change permission on IUSR account on that folder but still
error prompts.

"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#t**************@TK2MSFTNGP09.phx.gbl...
You are getting that message, not because you've
published your files incorrectly, but because you have
an error in your default application's page.

In order to see the source of that error, you need
to modify your web.config file as instructed :

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

and upload the modified web.config file to your server.

*Then* you will be able to see what the source for
your error is, unless your ISP doesn't allow for
application errors to be displayed.

The only way to find out, is to upload the
modified web.comfig file to the server,
and trying to access your application again.


Juan T. Llibre
ASP.NET MVP
===========
"A P" <ap@textguru.ph> wrote in message
news:uz**************@tk2msftngp13.phx.gbl...
Hi!

I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to our server. I try to copy (thru explorer) the files but it didn't work! I receive Runtime Error:
Server Error in '/' Application.


--------------------------------------------------------------------------

--
----

Runtime Error
Description: An application error occurred on the server. The current
custom
error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could,
however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be
viewable
on remote machines, please create a <customErrors> tag within a
"web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

What did I do wrong? Or what is the proper way of publishing .Net Web
documents to the production server?


Nov 19 '05 #3
You're receiving the error message,
so the <customErrors mode="Off" /> setting
is working as it should.

Now, for the error itself::
Access denied to 'C:\WWW_TestSystem\'.
Failed to start monitoring file changes. Exception Details: System.Web.HttpException:
Access denied to 'I:\WWW_TestSystem\'.
Failed to start monitoring file changes. I already assign Change permission on IUSR account
on that folder but still error prompts.
Try assigning Read and Change permissions to the
MachineName\ASPNET account, if you're using IIS 5.x,
or to the Network Service account, if you're using IIS 6.0.

Let us know how you do.

Juan T. Llibre
ASP.NET MVP
===========
"A P" <ap@textguru.ph> wrote in message
news:eP**************@tk2msftngp13.phx.gbl... Its already Off but same error message. I've tried opening the page on the
server and I find different error message.
*****************

Here is the error message that I receive from the server's screen:

Server Error in '/' Application.
------------------------------------------------------------------

Access denied to 'C:\WWW_TestSystem\'.
Failed to start monitoring file changes.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Access denied to
'I:\WWW_TestSystem\'. Failed to start monitoring file changes.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

I already assign Change permission on IUSR account on that folder but
still
error prompts. "Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#t**************@TK2MSFTNGP09.phx.gbl...
You are getting that message, not because you've
published your files incorrectly, but because you have
an error in your default application's page.

In order to see the source of that error, you need
to modify your web.config file as instructed :

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

and upload the modified web.config file to your server.

*Then* you will be able to see what the source for
your error is, unless your ISP doesn't allow for
application errors to be displayed.

The only way to find out, is to upload the
modified web.comfig file to the server,
and trying to access your application again.


Juan T. Llibre
ASP.NET MVP
===========
"A P" <ap@textguru.ph> wrote in message
news:uz**************@tk2msftngp13.phx.gbl...
> Hi!
>
> I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to > our server. I try to copy (thru explorer) the files but it didn't work! I > receive Runtime Error:
>
>
> Server Error in '/' Application.


--------------------------------------------------------------------------

--
> ----
>
> Runtime Error
> Description: An application error occurred on the server. The current
> custom
> error settings for this application prevent the details of the application > error from being viewed remotely (for security reasons). It could,
> however,
> be viewed by browsers running on the local server machine.
>
> Details: To enable the details of this specific error message to be
> viewable
> on remote machines, please create a <customErrors> tag within a
> "web.config"
> configuration file located in the root directory of the current web
> application. This <customErrors> tag should then have its "mode" attribute > set to "Off".
>
>
> <!-- Web.Config Configuration File -->
>
> <configuration>
> <system.web>
> <customErrors mode="Off"/>
> </system.web>
> </configuration>
>
>
> Notes: The current error page you are seeing can be replaced by a
> custom
> error page by modifying the "defaultRedirect" attribute of the
> application's
> <customErrors> configuration tag to point to a custom error page URL.
>
>
> <!-- Web.Config Configuration File -->
>
> <configuration>
> <system.web>
> <customErrors mode="RemoteOnly"
> defaultRedirect="mycustompage.htm"/>
> </system.web>
> </configuration>
>
>
>
> What did I do wrong? Or what is the proper way of publishing .Net Web
> documents to the production server?



Nov 19 '05 #4
You can't deploy by Explorer alone without taking the additional step of
configuring the web application. This can be done in the IIS Manager or by
sharing the folder using the Web Sharing tab of the folder context menu in
explorer.

Alternatively, if you use FrontPage extensions to deploy your application,
FrontPage Extensions will configure the web application for you.

Hope this helps,

DalePres
MCAD, MCDBA, MCSE

"A P" <ap@textguru.ph> wrote in message
news:uz**************@tk2msftngp13.phx.gbl...
Hi!

I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to
our server. I try to copy (thru explorer) the files but it didn't work! I
receive Runtime Error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----

Runtime Error
Description: An application error occurred on the server. The current
custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could,
however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be
viewable
on remote machines, please create a <customErrors> tag within a
"web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

What did I do wrong? Or what is the proper way of publishing .Net Web
documents to the production server?

Nov 19 '05 #5
A P
Its already Off but same error message. I've tried opening the page on the
server and I find different error message. Btw, here is my current WebConfig
File:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>
<system.web>

<!-- DYNAMIC DEBUG COMPILATION

Set compilation debug="true" to insert debugging symbols (.pdb information)

into the compiled page. Because this creates a larger file that executes

more slowly, you should set this value to true only when debugging and to

false at all other times. For more information, refer to the documentation
about

debugging ASP.NET files.

-->

<compilation defaultLanguage="vb" debug="true" />

<!-- CUSTOM ERROR MESSAGES

Set customErrors mode="On" or "RemoteOnly" to enable custom error messages,
"Off" to disable.

Add <error> tags for each of the errors you want to handle.

-->

<customErrors mode="Off" />

<!-- AUTHENTICATION

This section sets the authentication policies of the application. Possible
modes are "Windows",

"Forms", "Passport" and "None"

-->

<authentication mode="Windows" />

<!-- AUTHORIZATION

This section sets the authorization policies of the application. You can
allow or deny access

to application resources by user or role. Wildcards: "*" mean everyone, "?"
means anonymous

(unauthenticated) users.

-->

<authorization>

<allow users="*" /> <!-- Allow all users -->

<!-- <allow users="[comma separated list of users]"

roles="[comma separated list of roles]"/>

<deny users="[comma separated list of users]"

roles="[comma separated list of roles]"/>

-->

</authorization>

<!-- APPLICATION-LEVEL TRACE LOGGING

Application-level tracing enables trace log output for every page within an
application.

Set trace enabled="true" to enable application trace logging. If
pageOutput="true", the

trace information will be displayed at the bottom of each page. Otherwise,
you can view the

application trace log by browsing the "trace.axd" page from your web
application

root.

-->

<trace enabled="false" requestLimit="10" pageOutput="false"
traceMode="SortByTime" localOnly="true" />

<!-- SESSION STATE SETTINGS

By default ASP.NET uses cookies to identify which requests belong to a
particular session.

If cookies are not available, a session can be tracked by adding a session
identifier to the URL.

To disable cookies, set sessionState cookieless="true".

-->

<sessionState

mode="InProc"

stateConnectionString="tcpip=127.0.0.1:42424"

sqlConnectionString="data source=127.0.0.1;user id=sa;password="

cookieless="false"

timeout="20"

/>

<!-- GLOBALIZATION

This section sets the globalization settings of the application.

-->

<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>

</configuration>

*****************

Here is the error message that I receive from the server's screen:

Server Error in '/' Application.
----------------------------------------------------------------------------
----

Access denied to 'C:\WWW_TestSystem\'. Failed to start monitoring file
changes.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Access denied to
'I:\WWW_TestSystem\'. Failed to start monitoring file changes.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
I already assign Change permission on IUSR account on that folder but still
error prompts.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#t**************@TK2MSFTNGP09.phx.gbl...
You are getting that message, not because you've
published your files incorrectly, but because you have
an error in your default application's page.

In order to see the source of that error, you need
to modify your web.config file as instructed :

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

and upload the modified web.config file to your server.

*Then* you will be able to see what the source for
your error is, unless your ISP doesn't allow for
application errors to be displayed.

The only way to find out, is to upload the
modified web.comfig file to the server,
and trying to access your application again.


Juan T. Llibre
ASP.NET MVP
===========
"A P" <ap@textguru.ph> wrote in message
news:uz**************@tk2msftngp13.phx.gbl...
Hi!

I'm using ASP.Net Web Matrix on my PC and wanting to publish the files to our server. I try to copy (thru explorer) the files but it didn't work! I receive Runtime Error:
Server Error in '/' Application.


--------------------------------------------------------------------------

--
----

Runtime Error
Description: An application error occurred on the server. The current
custom
error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could,
however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be
viewable
on remote machines, please create a <customErrors> tag within a
"web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's
<customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

What did I do wrong? Or what is the proper way of publishing .Net Web
documents to the production server?


Nov 19 '05 #6
re:
I already assign Change permission on IUSR account
on that folder but still error prompts.
You may have missed this part of the reply
to this message which you have reposted :
Try assigning Read and Change permissions to the
MachineName\ASPNET account, if you're using IIS 5.x,
or to the Network Service account, if you're using IIS 6.0.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"A P" <ap@textguru.ph> wrote in message
news:O0**************@TK2MSFTNGP12.phx.gbl... Its already Off but same error message. I've tried opening the page on the
server and I find different error message. Btw, here is my current
WebConfig
File:

<?xml version="1.0" encoding="utf-8" ?> ....snipped... *****************
Here is the error message that I receive from the server's screen:
Server Error in '/' Application.
----------------------------------------------------------------------------

Access denied to 'C:\WWW_TestSystem\'. Failed to start monitoring file
changes.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Access denied to
'I:\WWW_TestSystem\'. Failed to start monitoring file changes.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

I already assign Change permission on IUSR account on that folder but
still
error prompts.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#t**************@TK2MSFTNGP09.phx.gbl...

Nov 19 '05 #7
A P
My server is a DC. It doesnt have local groups.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#b*************@tk2msftngp13.phx.gbl...
re:
I already assign Change permission on IUSR account
on that folder but still error prompts.


You may have missed this part of the reply
to this message which you have reposted :
Try assigning Read and Change permissions to the
MachineName\ASPNET account, if you're using IIS 5.x,
or to the Network Service account, if you're using IIS 6.0.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"A P" <ap@textguru.ph> wrote in message
news:O0**************@TK2MSFTNGP12.phx.gbl...
Its already Off but same error message. I've tried opening the page on

the server and I find different error message. Btw, here is my current
WebConfig
File:

<?xml version="1.0" encoding="utf-8" ?>

...snipped...
*****************
Here is the error message that I receive from the server's screen:
Server Error in '/' Application.


--------------------------------------------------------------------------

--

Access denied to 'C:\WWW_TestSystem\'. Failed to start monitoring file
changes.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Access denied to
'I:\WWW_TestSystem\'. Failed to start monitoring file changes.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

I already assign Change permission on IUSR account on that folder but
still
error prompts.


"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#t**************@TK2MSFTNGP09.phx.gbl...


Nov 19 '05 #8
re:
My server is a DC. It doesnt have local groups.
Bad news.
Running ASP.NET on DC's is not a good idea.

See
http://msdn.microsoft.com/library/de...SecNetch08.asp

Domain controllers and the ASP.NET process account

In general, it is not advisable to run your Web server on
a domain controller, because a compromise of the server
is a compromise of the domain.

See
http://msdn.microsoft.com/library/de...et_on_a_dc.asp
for a run-down on how to setup a weak account
to run ASPNET under, so that you can run a more
secure IIS server on your domain controller.

Even though it says that it's for ASP.NET v1,
the same procedure will work for 1.1 or 2.0.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"A P" <ap@textguru.ph> wrote in message
news:ud*************@tk2msftngp13.phx.gbl... My server is a DC. It doesnt have local groups.
"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:#b*************@tk2msftngp13.phx.gbl...
re:
> I already assign Change permission on IUSR account
> on that folder but still error prompts.


You may have missed this part of the reply
to this message which you have reposted :
>>Try assigning Read and Change permissions to the
>>MachineName\ASPNET account, if you're using IIS 5.x,
>>or to the Network Service account, if you're using IIS 6.0.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"A P" <ap@textguru.ph> wrote in message
news:O0**************@TK2MSFTNGP12.phx.gbl...
> Its already Off but same error message. I've tried opening the page on the > server and I find different error message. Btw, here is my current
> WebConfig
> File:
>
> <?xml version="1.0" encoding="utf-8" ?>

...snipped...
> *****************
> Here is the error message that I receive from the server's screen:
> Server Error in '/' Application.


--------------------------------------------------------------------------

--
>
> Access denied to 'C:\WWW_TestSystem\'. Failed to start monitoring file
> changes.
> Description: An unhandled exception occurred during the execution of
> the
> current web request. Please review the stack trace for more information
> about the error and where it originated in the code.
>
> Exception Details: System.Web.HttpException: Access denied to
> 'I:\WWW_TestSystem\'. Failed to start monitoring file changes.
>
> Source Error:
>
> An unhandled exception was generated during the execution of the
> current web request. Information regarding the origin and location of the > exception can be identified using the exception stack trace below.
>
> I already assign Change permission on IUSR account on that folder but
> still
> error prompts.


> "Juan T. Llibre" <no***********@nowhere.com> wrote in message
> news:#t**************@TK2MSFTNGP09.phx.gbl...



Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: rachel | last post by:
Hi all, I am new in ASP.Net. I have a question on link multiple web forms together. Here is the scenario: I create an Index.aspx WebForm which consists of a banner and three navigator...
20
by: Martin Rosén-Lidholm | last post by:
Although an impossible question to answer, I fell urged to raise it anyhow. Given a fairly complex ERP application scenario, what's your estimation for the X-ratio dev. time for...
2
by: Terry Mulvany | last post by:
Hello group, Curious as to how you all have chosen to deploy/publish your asp.net apps. Currently though we have a local dev environment, then we stage to a QA server then we publish/deploy. In...
3
by: EqDev | last post by:
Hello I have set up a new windows server 2003 standard edition for training (on new software we have developed) and am having problems publishing webs to it from VS 2005. I have a C# Web...
5
by: Andy G | last post by:
I'm having a hell of a time publishing my first VS 2005 web site. All it tells me is publish failed. Is there any place that gives me a hint on why it failed? I'm typing in the website address...
2
by: Geek | last post by:
Guys, I have a question regarding publishing web site using visual studio 2005. As usual I am running in to issues using visual studio 2005. I have build a web site and when I publish to the...
1
by: Allan Ebdrup | last post by:
I have a asp.net v2 website that runs fine on our development server. I have published the website to a stage server and it runs fine, but when I publish it to production I get the following error:...
5
by: rmgalante | last post by:
I've been using the VS2005 Publish utility on one of my projects for about six months. I have a large site with hundreds of files, thousands if you include the code behind files. So I thought...
4
by: cj | last post by:
I'm finally back to trying to write a web service. In VB 2005 I created a new web site and then ASP.NET Web Service. It opened showing App_Code/Service.VB with the following code already in it ...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.