Click to See Complete Forum and Search --> : question in asp.net


dskp
April 15th, 2010, 07:44 AM
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...

dannystommen
April 15th, 2010, 08:27 AM
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.

dskp
April 15th, 2010, 09:47 AM
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.

dannystommen
April 15th, 2010, 10:03 AM
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.

dskp
April 15th, 2010, 11:25 AM
i understood now. thanku @dannystommen