PDA

View Full Version : Deploying a Web Application


MisinformedDNA
08-08-2009, 12:00 AM
I am trying to deploy a Web Application and have seen this (http://support.discountasp.net/KB/a72/how-do-i-deploy-visual-studio-20082005-visual-web-developer.aspx?KBSearchID=54289) referenced multiple times, but I don't have a "Web Site" option nor do I see a way to copy the web site.

I'm guessing the issue is that I created a Web Application, not a Web Site, since I can see the options when I create a web site.

I don't want to convert my web application to a web site.

What are the steps for deploying a web application?

Thanks.

wisemx
08-08-2009, 08:38 AM
Hi,
This has come up in a lot of MSDN Webcasts and it has indeed confused many developers.
(Typically the conversion is from a Website to an Application)
Take a look at the links in this, you'll find a lot of articles on-line:
http://www.bing.com/search?q=asp.net+convert+web+application+to+web+si te
All the best,
Mark

MisinformedDNA
08-08-2009, 09:51 AM
Actually, I found Build -> Publish to work just fine.

Chuck
08-08-2009, 02:59 PM
Glad its working. Thanks for posting back.

fissuresimp
09-28-2009, 10:18 AM
I'm putting this out there for the person like myself who just started their account and wants to get the first app up on the web as a test.

I built a HelloWorldSampleApp ASP.NET application and tested it locally on IIS (Visual Studio 2008)

From Visual Studio, I selected Build->Publish HelloWorldSampleApp.

I used the ftp address (not http) and used my ftp login and password.

It deployed successfully.

FTP names are customerID|username
1234567|fissuresimp

I went to this url:
http://fissuresimp.web###.discountasp.net/Default.Aspx

I ran my application.;)


-fyi

frankpatton
11-17-2009, 02:13 PM
It took me a while .. low learning curve .. but I got a successful publish ..

except:

I created an application on my laptop

Very simple

Created a connection string to data in my discountasp sql 2005 file ..

Program works like a champ ..

I published the solution to my website ..

Works like a champ except the data that came to my laptop from discountasp is not going to the url on discount asp:

The silverlight program runs fine.. and there are no error messages

Any thoughts?

wisemx
11-18-2009, 03:38 AM
Hi,
Have been thinking about this since I took a look at your link...
It may be your Silverlight interface can't find resources, which is pretty easy to do.
i.e. Same XAP in a SL App or SL Web Site.
Take a look at this, just for the heck of it. ;-)
http://www.kirupa.com/blend_silverlight/silverlight_website_projects_pg1.htm
All the best,
Mark