-2

I have developed c# .net web application and it is build on top of .NET Framework 4.0.

I have to show up my web application on my friend's PC without installing any software like Microsoft Visual Studio or IIS. In addition to the Visual Studio, i am also using MS SQL 2012 in my application.

Any suggestions how i can demonstrate my web app ?

Yusubov
  • 5,815
  • 9
  • 32
  • 69
casua
  • 7

2 Answers2

4

In short: your web application needs to be hosted in some server (Web Server needs to be running and accessible to the PC that tries to make request to it), where your friend's PC has access.

Otherwise, you have to make a network between the PC'es.

If you never publish your web application to be hosted, here you are a good resource to look - How to upload my C# asp.net project to website(free hosting)

An informative ASP.NET Web project deployment tutorial may also help you - Deployment.

Yusubov
  • 5,815
  • 9
  • 32
  • 69
  • Just to add to this, the web server could be running on your friend's PC, it doesn't have to be a seperate computer – Greg Jan 03 '13 at 02:08
  • @Greg, you are right, however question says that no software/service installation is possible on friend's PC. – Yusubov Jan 03 '13 at 02:11
1

Because you developed a web application..so

in order to make others to visit your website without anything installed.

you should publish your web application to a server(may be some free host,or virtual host.) which install everything ..

and then your friend can visit it just like you visit some normal website..

bystander
  • 551
  • 3
  • 14