Click here to Skip to main content
15,906,816 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i created sap.net project with c# language in visual studio 2010
...
now .... for run it in other computer what is need ?

and how do run main page (main.aspx) on browsers .

i want way(s) that easy and work on all computer by Click on Main.aspx

which version of IIS Should be Install ?

please help me ...

thanks a lot
Posted
Updated 7-Aug-11 20:34pm
v2
Comments
Sergey Alexandrovich Kryukov 8-Aug-11 2:49am    
Does not seem to make sense.
--SA

To run asp.net web application in another PC, you should:

1- install IIS on destination PC (IIS >= 5.0 should be fine)
2- install .NET Framework 4.0 (because you use visual studio 2010 create project, so default .NET framework is 4.0, if your web application use .NET 2.0, you only need .NET framework 2.0 is installed)
3- open command line and run following command
cd c:\windows\Microsoft.NET\Framework\v4.0.30319
aspnet_regiis -i // this command to make sure .NET 4.0 is installed into IIS
4- create your virtual web application in IIS
5- .... hope help and good luck :)
 
Share this answer
 
I think you're very confused. The idea is NEVER to distribute your web app to different computers, it's to set it up on a server, so that any computer can browse to the website and view your web app. You can also do this over a local network, just get the page hosted on a server, and people will be able to browse to it.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 8-Aug-11 2:50am    
My 5. It does not look OP has a clue on what HTTP does, not just about ASP.NET. Basic reading recommended.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900