Step's to upload the site on web server
-
there is no need for database in my website. i just publish the site and save that in a folder after that move all the files in web server may i know this is correct way to upload the site in web server
You just copy the working site from your development directory onto the server. You don't need to publish anything.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
You just copy the working site from your development directory onto the server. You don't need to publish anything.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Yes, of course it does, that's why those things exist. Copy the entire folder.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Yes, of course it does, that's why those things exist. Copy the entire folder.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
i need to change any code in web.config when i am uploading right now i am uploading the site
Why don't you try doing what I say, and report back if you have any issues ? If you don't have any connection strings in there, or other paths that would change, then you shouldn't need to change it, no.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Why don't you try doing what I say, and report back if you have any issues ? If you don't have any connection strings in there, or other paths that would change, then you shouldn't need to change it, no.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
i upload my its show's error like this
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> -
i upload my its show's error like this
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> -
You will need to work out how to get it to show you the actual error in order to fix it. Can you log into the server and view it there ? If not, check the settings, but I suspect it's cached the web.config and needs to be reset in order to show you the real error.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
You will need to work out how to get it to show you the actual error in order to fix it. Can you log into the server and view it there ? If not, check the settings, but I suspect it's cached the web.config and needs to be reset in order to show you the real error.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
If you changed the web.config on the server, it's possible the server is still reading the old version because of some sort of cache. Beyond that, you need to work out why it's not showing you the actual error, or you can't do anything to fix it. If you could either log in to the server, or go to it physically, the right error would show if you browsed to the site from the server.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
i logged in to the server and i saw the web.config file i change the RemoteOnly to Off inside tag but same error display
if i change the content of the web.config file like this
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>its shows error like this
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.Parser Error Message: Could not load type '_Default'.
Source Error:
Line 1: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">Source File: f:\inetpub\suntvaus\Default.aspx Line: 1
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300
-
i logged in to the server and i saw the web.config file i change the RemoteOnly to Off inside tag but same error display
To reiterate ( for the third time ), if you can log into the server, as in, control the server somehow, then yuo should browse to your site within the server. Then you will see the error. Beyond that, you need to work out how to fix your web.config, or if you're sure you have and that you saved it correctly, you need to reset your server. Could you have your site in the subdirectory of where the web server is looking ? Perhaps it's seeing an error somewhere other than where you put your code ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Hi to all i am new face to asp.net i develop a website in asp.net (language = vb) in .NET 2.0. In my system i run the project. i want to upload the site in a web server. i have web server and domain name. can any tell pls how to upload my site in web server i have change a file content to run in web pls tell me step by step procedure to upload my site
hi, after making all the changes,if u have changed config file too u need to reset the iis before runing it so reset the iis and then run it, praveen.