473,408 Members | 2,832 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,408 software developers and data experts.

deploying website VS 2005

Hello

I have no idea how to deploy my website to another server (in virtual folder
I cannot see dlls file). Is thate any simple and quick manner to deploy web
site to another servers?

Best Regards

Dariusz Tomon

Jan 15 '07 #1
5 3309
Hi,

Dariusz Tomon wrote:
Hello

I have no idea how to deploy my website to another server (in virtual folder
I cannot see dlls file). Is thate any simple and quick manner to deploy web
site to another servers?

Best Regards

Dariusz Tomon
With the new "website" model in VS2005, you don't need to deploy DLLs,
only ASPX and CS files (code behind). The DLLs are compiled on demand.

If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you install
the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Jan 15 '07 #2
Thank you for explanation but I'm trying to run my website and get error:
Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuration>
Line 3: <configSections>
Line 4: <sectionGroup name="microsoft.web"
type="Microsoft.Web.Configuration.MicrosoftWebSect ionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 5: <sectionGroup name="scripting"
type="Microsoft.Web.Configuration.ScriptingSection Group,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 6: <sectionGroup name="webServices"
type="Microsoft.Web.Configuration.ScriptingWebServ icesSectionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Source File: c:\inetpub\wwwroot\aplikacja2\web.config Line: 4

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

Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300

What could be wrong? at http://localhost/apliakcja1 - it works perfect when
I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

Best Regards

Dariusz Tomon
"Laurent Bugnion [MVP]" <ga*********@bluewin.chwrote in message
news:O8**************@TK2MSFTNGP06.phx.gbl...
Hi,

Dariusz Tomon wrote:
>Hello

I have no idea how to deploy my website to another server (in virtual
folder I cannot see dlls file). Is thate any simple and quick manner to
deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy DLLs,
only ASPX and CS files (code behind). The DLLs are compiled on demand.

If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you install the
SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Jan 15 '07 #3
Dariusz Tomon wrote:
Thank you for explanation but I'm trying to run my website and get
error:

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

Configuration Error
Description: An error occurred during the processing of a
configuration file required to service this request. Please review
the specific error details below and modify your configuration file
appropriately.
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuration>
Line 3: <configSections>
Line 4: <sectionGroup name="microsoft.web"
type="Microsoft.Web.Configuration.MicrosoftWebSect ionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 5: <sectionGroup name="scripting"
type="Microsoft.Web.Configuration.ScriptingSection Group,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 6: <sectionGroup name="webServices"
type="Microsoft.Web.Configuration.ScriptingWebServ icesSectionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Source File: c:\inetpub\wwwroot\aplikacja2\web.config Line: 4

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

Version Information: Microsoft .NET Framework Version:1.1.4322.2300;
ASP.NET Version:1.1.4322.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error
You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET tab
and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
"Laurent Bugnion [MVP]" <ga*********@bluewin.chwrote in message
news:O8**************@TK2MSFTNGP06.phx.gbl...
>Hi,

Dariusz Tomon wrote:
>>Hello

I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Jan 15 '07 #4
Hi

I changed to change the version to 2.0. and AJAX is installed but the error
is still the same ...
On my development environment I have Visual Studio 2005 with
AjaxControlToolkit set up - it's the difference between my laptop and the
remote server.

Any idea?

Dariusz Tomon

"Riki" <ri**@dontnagme.comwrote in message
news:uw**************@TK2MSFTNGP04.phx.gbl...
Dariusz Tomon wrote:
>Thank you for explanation but I'm trying to run my website and get
error:

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

Configuration Error
Description: An error occurred during the processing of a
configuration file required to service this request. Please review
the specific error details below and modify your configuration file
appropriately.
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuration>
Line 3: <configSections>
Line 4: <sectionGroup name="microsoft.web"
type="Microsoft.Web.Configuration.MicrosoftWebSec tionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 5: <sectionGroup name="scripting"
type="Microsoft.Web.Configuration.ScriptingSectio nGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 6: <sectionGroup name="webServices"
type="Microsoft.Web.Configuration.ScriptingWebSer vicesSectionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Source File: c:\inetpub\wwwroot\aplikacja2\web.config Line: 4

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

Version Information: Microsoft .NET Framework Version:1.1.4322.2300;
ASP.NET Version:1.1.4322.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET
tab and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
>"Laurent Bugnion [MVP]" <ga*********@bluewin.chwrote in message
news:O8**************@TK2MSFTNGP06.phx.gbl...
>>Hi,

Dariusz Tomon wrote:
Hello

I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch


Jan 15 '07 #5
One more thing: Is the folder in question designated an application on the
server?

"Dariusz Tomon" <d.*****@mazars.plwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Hi

I changed to change the version to 2.0. and AJAX is installed but the
error is still the same ...
On my development environment I have Visual Studio 2005 with
AjaxControlToolkit set up - it's the difference between my laptop and the
remote server.

Any idea?

Dariusz Tomon

"Riki" <ri**@dontnagme.comwrote in message
news:uw**************@TK2MSFTNGP04.phx.gbl...
>Dariusz Tomon wrote:
>>Thank you for explanation but I'm trying to run my website and get
error:

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

Configuration Error
Description: An error occurred during the processing of a
configuration file required to service this request. Please review
the specific error details below and modify your configuration file
appropriately.
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuration>
Line 3: <configSections>
Line 4: <sectionGroup name="microsoft.web"
type="Microsoft.Web.Configuration.MicrosoftWebSe ctionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 5: <sectionGroup name="scripting"
type="Microsoft.Web.Configuration.ScriptingSecti onGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Line 6: <sectionGroup name="webServices"
type="Microsoft.Web.Configuration.ScriptingWebSe rvicesSectionGroup,
Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35">
Source File: c:\inetpub\wwwroot\aplikacja2\web.config Line: 4

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

Version Information: Microsoft .NET Framework Version:1.1.4322.2300;
ASP.NET Version:1.1.4322.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET
tab and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
>>"Laurent Bugnion [MVP]" <ga*********@bluewin.chwrote in message
news:O8**************@TK2MSFTNGP06.phx.gbl...
Hi,

Dariusz Tomon wrote:
Hello
>
I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?
>
Best Regards
>
Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch



Jan 15 '07 #6

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

Similar topics

2
by: timsohn | last post by:
I am trying to deploy the most basic web service (Hello World) example to my website, but am having significant trouble doing so. Here is what I am doing: 1) Create a New Web Service in VS 2005...
1
by: Records For Living Support | last post by:
I've just upgraded from Visual Studio 2003 to 2005 and I've finally got my website working on my laptop. WHen I try to send it over to the real webserver - it fails miserably. I've had MULTIPLE...
3
by: Nerd | last post by:
All, I am trying to deploy my .Net 2.0 web application and I am looking for the best approach. The setup and deployment project seems to copy the whole source files also. Is there a better way to...
1
by: Sweety | last post by:
I used to use the copy option(with Select the Only files needed to run this application) to copy a project whenever I do a build in VS.Net1.1. Whats the equivalent of this in .Net2.0? I have...
2
by: CFTK | last post by:
Hi everyone! Today I had the first demonstration of my Website and I realised that I couldn´t access to it from another PC different from mine... I had been reading tutorials and I have seen the...
6
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy....
8
by: =?Utf-8?B?V2hpc2tleVJvbWVv?= | last post by:
I am trying to copy files and folders onto a production machine (Windows 2003 web edition -- we had to install the .NetFramework 2.0 on it). I wasn't even sure which files to copy for a ASP.NET...
10
by: =?Utf-8?B?UmljaGFyZA==?= | last post by:
Hi, I usually deploy my ASP .NET application to the server by publishing, using Visual Studio 2005 publish feature. This creates the Bin folder on the server, with the compiled DLLs. I've...
3
by: kkao77 | last post by:
can you show me in more detail? I have same problem where on the page it's https://service.premilance.com/Company.svc, but the svcutil tells me to get it from https://pserver1/Company.svc?wsdl...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.