how to open an existing project in asp.net?

  • Thread starter Thread starter tilak_92584
  • Start date Start date
T

tilak_92584

Guest
i hav an project which is developed in asp.net with vb.net in Vs.net but i do't know which file to open bcoz in these somany files r there i need solution for this way "*.aspx.cs||*.aspx.vb||*.*.default aspx" & i want to know to make that project into "*.exe" to run in windos
 
You can open an entire solution via Microsoft Visual Studio (or SharpDevelop) by looking for *.sln files or you can open individual projects by looking for *.csproj files.

You won't be able to run it directly off Windows, you'll have to deploy it on Microsoft Internet Information Server. If it's a simple web project, you might be able to create a virtual directory in IIS and then just copy all the files into it.







_
 
Back
Top