473,657 Members | 2,481 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

NEW Web Application Project [VS 2005]

I installed this new BETA component for VS 2005 and it really helped with
the migration from vs2003, but now I cannot deploy the project. Compiles
fine, but there is no option to Copy the project, and that new Web
Deployment Project update does not work on Web Application Projects so I
cant use that either.

I'm just trying to copy the project to a release directory with "only
required files" such as .aspx and .dlls just like in VS 2003.

Can anyone help?

Thanks.
Dec 31 '05 #1
4 1247
Chris,
Until Scott Guthrie and his group come out with the final product, you will
probably have to XCopy deploy "by hand". This means everything in the bin
folder, all .ascx, .aspx, and .asax files (but not .cs files) and the
web.config. There are still a number of "Holes" in the preview product, most
of which are well - described in the tutorial.

Peter
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Chris" wrote:
I installed this new BETA component for VS 2005 and it really helped with
the migration from vs2003, but now I cannot deploy the project. Compiles
fine, but there is no option to Copy the project, and that new Web
Deployment Project update does not work on Web Application Projects so I
cant use that either.

I'm just trying to copy the project to a release directory with "only
required files" such as .aspx and .dlls just like in VS 2003.

Can anyone help?

Thanks.

Dec 31 '05 #2
The "copy" function is new and improved in VS2005. Just choose "Publish
web site..." on the "Build" menu, and you will see what I mean. Uncheck
the box that allows the site to be updateable if you want your aspx
pages copied as stub files instead of html (new to VS2005). This would
mean that your code behind AND source pages would be compiled on the
web server (my preference). If you don't uncheck this box, the
functionality will be basically the same as the old "Copy website
feature..." in VS2003.

Also I see no reason for any third party tool, if all you want to do is
copy. I have had no problems in using this simple, built-in publish
feature.

JP
Chris wrote:
I installed this new BETA component for VS 2005 and it really helped with
the migration from vs2003, but now I cannot deploy the project. Compiles
fine, but there is no option to Copy the project, and that new Web
Deployment Project update does not work on Web Application Projects so I
cant use that either.

I'm just trying to copy the project to a release directory with "only
required files" such as .aspx and .dlls just like in VS 2003.

Can anyone help?

Thanks.


Dec 31 '05 #3
I believe the OP is referring to the new "Web Application Project Prview"

http://webproject.scottgu.com/

-- for which the copy project option is not available (yet).

--Peter
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Joey" wrote:
The "copy" function is new and improved in VS2005. Just choose "Publish
web site..." on the "Build" menu, and you will see what I mean. Uncheck
the box that allows the site to be updateable if you want your aspx
pages copied as stub files instead of html (new to VS2005). This would
mean that your code behind AND source pages would be compiled on the
web server (my preference). If you don't uncheck this box, the
functionality will be basically the same as the old "Copy website
feature..." in VS2003.

Also I see no reason for any third party tool, if all you want to do is
copy. I have had no problems in using this simple, built-in publish
feature.

JP
Chris wrote:
I installed this new BETA component for VS 2005 and it really helped with
the migration from vs2003, but now I cannot deploy the project. Compiles
fine, but there is no option to Copy the project, and that new Web
Deployment Project update does not work on Web Application Projects so I
cant use that either.

I'm just trying to copy the project to a release directory with "only
required files" such as .aspx and .dlls just like in VS 2003.

Can anyone help?

Thanks.


Dec 31 '05 #4
Oh, sorry. I didn't get that from the post. I still don't see it. Guess
I must have missed something earlier.

Jan 4 '06 #5

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

Similar topics

5
512
by: Mike Owen | last post by:
Hi, I have just used the import Wizard to import a VS 2003 app to VS 2005. I have a lot of work to do to enable it to compile successfully with all the errors and warnings it gave me, but as a starting point the compiler can no longer find the function as at the bottom of this posting, that was in the Global.asax.vb file. All the function does is give an easy / quick way of getting the application
9
2765
by: Graham | last post by:
I have been having some fun learning and using the new Controls and methods in .Net 2.0 which will make my life in the future easier and faster. Specifically the new databinding practises and wizards. But, I have found that trying to do something "outside the norm" adds a rather large level of complexity and/or data replication. Background I have been commissioned to create a web-based application for a client. It has a formsaunthentication...
2
2613
by: Robert | last post by:
I have an application migrated from 1.1 to 2.0 via VS2005. Under 1.1 I could do the following to return the version information (as found in the assemblyinfo.vb file) GetVersion = System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly.Location).FileMajorPart.ToString + "." +...
4
1924
by: Mukesh | last post by:
Hi I m using microsoft application blocks Enterprise Library june 2005 with .net framework 1.1 and VStudio2003 And C# as coding language Sql server 2000 database the project is running properly on the localhost server but my online server does not have the ms Ent lib installed and also de\oes not have visual studio that simply a .net 1.1 installed on that.
3
1726
by: Mukesh | last post by:
Thx Sloan for the solution. It is working properly under Full trust When i tried it under Medium trust it was giving error Parser Error Message: Required permissions cannot be acquired. :::::::::: Source Error:
3
4787
by: xycos | last post by:
Hello. I apologize for asking this question as the information I need is availible via the MSDN library, however I cannot seemt o understand what I need to do, so I'm asking here. I have created application settings in Visual Studio (right-click on the project, go to the settings tab, etc.) and have associated each of these settings with a property on a form. This seems to be working right (i.e. if I edit the default value of a setting,...
4
20396
by: Hafner Avi | last post by:
Hi, I am trying to find out what is the difference between Web-Site and Web-Application-Project in Visual Studio 2005 ? People – what do you recommend ?
0
2552
by: rmgalante | last post by:
I was developing a large web site in VS 2005 as a web site project. I was having problems with the VS 2005 publish tool. It was slow, and provided no feedback. It has other issues as outlined below. Here is my solution. I converted the application from a Web Site Project (WSP) to a Web Application Project (WAP). Go to http://webproject.scottgu.com/ and read about the Web Application Project in VS 2005. Why?
0
2058
by: Stephen Thomas | last post by:
Hi there I wonder if any one has encountered this problem or can suggest what is wrong. I am trying the a procedure from the msn site but get the following message: Error 1 The type or namespace name 'LiveSearch' does not exist in the namespace 'ConsoleSampleWebSearch' (are you missing an assembly reference?) C:\Documents and Settings\Compaq\Local Settings\Application Data\Temporary Projects\ConsoleSampleWebSearch\Program.cs 13 30...
6
1868
by: Author | last post by:
I have VS 2005 professional. Here is the version info: Microsoft Visual Studio 2005 Version 8.0.50727.762 (SP .050727-7600) © 2005 Microsoft Corporation. All rights reserved. When I try to create a new project, I don't have a web application project option. In the New Project window, I select Visual C# under Project types, and on the right side, I only have the following
0
8394
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8306
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8825
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7327
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.