473,378 Members | 1,544 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,378 software developers and data experts.

Deployement

I just did a search on Deployment from Jan. 1, 2003 to
Decmber 2003 and read each post to no avail. Here is my
problem. I don't know if the problem is on my side or
the websever host.

I created a web application using VS.NET. It's a very
basic app with database access in the Global.asax.cs
file. Within that file I open an Access database, read a
table and store it within the Application object which is
then used on one page.

On my local webserver, it works fine. No problem. So, I
registered a domain with .NET1.1 support and FTP the
files to their server. I'm using MyValueHost.com, by the
way so if any of you have dealt with them, please let me
know.

Problem
=========
After ftping the files there I get the following error
message when I access the home page, index.aspx.

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".

My web.config DOES have the line:
<customErrors mode="Off" />
so I don't know what the hell it's complaining about.

Anyway, why wouldn't this just work? I started reading
inside the documentation on deployment and the feeling I
get is that this is either a VERY simple thing to do or
more complicated than it should be.

On one hand, I read, you can just copy the files and
that's it. Then later I've read you have to create a
deployement Project and so on.

Damn, Microsoft, VS.NET should behave similar to Front
Page. There should be a way to just publish your site to
whatever webserver you wish and everything should be
handled automatically. .NET is by far the best but if
deploying is this complicated, sheeesh..

Is there something I'm missing? Do I have to create, God
forbid, a deployment project before ftping my files?

thanks,
Prince

Nov 18 '05 #1
3 1179
TJS
look here under deployment

http://www.asp.net/Tutorials/quickstart.aspx

--
================================
http://www.ASPkey.net/
A Resource Site for Web Developers
*Free OnLine web Tools
*Free development services
================================

"Prince" <pr******@cox.net> wrote in message
news:02****************************@phx.gbl...
I just did a search on Deployment from Jan. 1, 2003 to
Decmber 2003 and read each post to no avail. Here is my
problem. I don't know if the problem is on my side or
the websever host.

I created a web application using VS.NET. It's a very
basic app with database access in the Global.asax.cs
file. Within that file I open an Access database, read a
table and store it within the Application object which is
then used on one page.

On my local webserver, it works fine. No problem. So, I
registered a domain with .NET1.1 support and FTP the
files to their server. I'm using MyValueHost.com, by the
way so if any of you have dealt with them, please let me
know.

Problem
=========
After ftping the files there I get the following error
message when I access the home page, index.aspx.

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".

My web.config DOES have the line:
<customErrors mode="Off" />
so I don't know what the hell it's complaining about.

Anyway, why wouldn't this just work? I started reading
inside the documentation on deployment and the feeling I
get is that this is either a VERY simple thing to do or
more complicated than it should be.

On one hand, I read, you can just copy the files and
that's it. Then later I've read you have to create a
deployement Project and so on.

Damn, Microsoft, VS.NET should behave similar to Front
Page. There should be a way to just publish your site to
whatever webserver you wish and everything should be
handled automatically. .NET is by far the best but if
deploying is this complicated, sheeesh..

Is there something I'm missing? Do I have to create, God
forbid, a deployment project before ftping my files?

thanks,
Prince

Nov 18 '05 #2
VS.Net DOES enable you to publish just like FrontPage. If you click on the
Copy Web icon above your list of items in the Solution Explorer (next to the
refresh icon) it will publish to a server with FrontPage Server Extensions.
It could be that the directory isn't marked as an application or something,
in that case it would explain why it might not be picking up settings in
your web.config file.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage

"Prince" <pr******@cox.net> wrote in message
news:02****************************@phx.gbl...
I just did a search on Deployment from Jan. 1, 2003 to
Decmber 2003 and read each post to no avail. Here is my
problem. I don't know if the problem is on my side or
the websever host.

I created a web application using VS.NET. It's a very
basic app with database access in the Global.asax.cs
file. Within that file I open an Access database, read a
table and store it within the Application object which is
then used on one page.

On my local webserver, it works fine. No problem. So, I
registered a domain with .NET1.1 support and FTP the
files to their server. I'm using MyValueHost.com, by the
way so if any of you have dealt with them, please let me
know.

Problem
=========
After ftping the files there I get the following error
message when I access the home page, index.aspx.

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".

My web.config DOES have the line:
<customErrors mode="Off" />
so I don't know what the hell it's complaining about.

Anyway, why wouldn't this just work? I started reading
inside the documentation on deployment and the feeling I
get is that this is either a VERY simple thing to do or
more complicated than it should be.

On one hand, I read, you can just copy the files and
that's it. Then later I've read you have to create a
deployement Project and so on.

Damn, Microsoft, VS.NET should behave similar to Front
Page. There should be a way to just publish your site to
whatever webserver you wish and everything should be
handled automatically. .NET is by far the best but if
deploying is this complicated, sheeesh..

Is there something I'm missing? Do I have to create, God
forbid, a deployment project before ftping my files?

thanks,
Prince

Nov 18 '05 #3
Try commenting out the authentication and sessionState sections in
web.config, to view remote errors. Some webhosting companies have problems
with displaying remote errors when these sections are specified.

Hope this helps,

Mun

"Prince" <pr******@cox.net> wrote in message
news:02****************************@phx.gbl...
I just did a search on Deployment from Jan. 1, 2003 to
Decmber 2003 and read each post to no avail. Here is my
problem. I don't know if the problem is on my side or
the websever host.

I created a web application using VS.NET. It's a very
basic app with database access in the Global.asax.cs
file. Within that file I open an Access database, read a
table and store it within the Application object which is
then used on one page.

On my local webserver, it works fine. No problem. So, I
registered a domain with .NET1.1 support and FTP the
files to their server. I'm using MyValueHost.com, by the
way so if any of you have dealt with them, please let me
know.

Problem
=========
After ftping the files there I get the following error
message when I access the home page, index.aspx.

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".

My web.config DOES have the line:
<customErrors mode="Off" />
so I don't know what the hell it's complaining about.

Anyway, why wouldn't this just work? I started reading
inside the documentation on deployment and the feeling I
get is that this is either a VERY simple thing to do or
more complicated than it should be.

On one hand, I read, you can just copy the files and
that's it. Then later I've read you have to create a
deployement Project and so on.

Damn, Microsoft, VS.NET should behave similar to Front
Page. There should be a way to just publish your site to
whatever webserver you wish and everything should be
handled automatically. .NET is by far the best but if
deploying is this complicated, sheeesh..

Is there something I'm missing? Do I have to create, God
forbid, a deployment project before ftping my files?

thanks,
Prince


Nov 18 '05 #4

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

Similar topics

6
by: Rodrigo Benenson | last post by:
Hi, Python is a great language. Python has great crossplatform support. Python has a great community. Python has excelent tools for other languages binding. Python has many good thing, and has...
0
by: Abdul | last post by:
I am working on a .net project and need some help. The project contains different components. Each component is in its privated assembly. For e.g Component1 is a C# library project in VS.net and...
0
by: serge calderara | last post by:
Dear all How it is possible when building a setup deployement project, to create a shortcut, that has an icon which is pointing in a system file library, without adding the system library file to...
0
by: serge calderara | last post by:
Dear all, I have a windows application which access to different database type, like SQL server and MS Access. I need to deploy my application to my network client. From here no particular...
1
by: Ali | last post by:
I want use Microsoft Office Document Imaging control in the VB.NET application . I added this control to Visual Studion.NET tollbox and used it in my program. This program work coorect in my...
0
by: ucasesoftware | last post by:
I need to retrieve in my application the serialNumber. It was tape by my customer in the Windows install with serialNumberTemplate I search something like application.serialNumber That is...
1
by: serge calderara | last post by:
Dear all, I have build an application with a web service on my local machine. All works fine Then I set the web reference to use dynamic url, which automatically update my application...
0
by: Pascal | last post by:
hello does somebody know how to add an ocx file in the package of a clickonce deployement and register it in the registry? http://www.scalpa.info
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.