CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Nov 2009
    Posts
    128

    Exclamation question in asp.net

    i am new to asp.net i have a question which may sound silly but i just want to clarify it.
    i have created a small website and when we press f5 we get it executed and output is show in browse.
    if i want to give o/p to my frnd should i send the whole project or is there any other way?

    for example in vc++,c# ..etc we get a .exe file and we post it directly .how can we obtain this in asp.net?

    dont mind plzzzzz...

  2. #2
    Join Date
    Sep 2008
    Location
    Netherlands
    Posts
    865

    Re: question in asp.net

    Visual Studio has a nice tool to do this. Rigth-click the webproject and next select 'Publish'. All files needed to run the website are compiled and copied to the selected folder. These are the files your friend need to run the website.

  3. #3
    Join Date
    Nov 2009
    Posts
    128

    Re: question in asp.net

    i did as u said,but it contains Bin folder,survey.aspx (survey is name of page) and web.config.
    that means even they ( to whom i send this project) should have visual studio installed.
    Last edited by dskp; April 15th, 2010 at 10:01 AM.

  4. #4
    Join Date
    Sep 2008
    Location
    Netherlands
    Posts
    865

    Re: question in asp.net

    That's not true. Visual Studio is one way to host these files, because Visual Studio has a built in webserver. The other way is to host files in IIS.

    Anyway, your friend needs a webserver.

  5. #5
    Join Date
    Nov 2009
    Posts
    128

    Re: question in asp.net

    i understood now. thanku @dannystommen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured