Bin folder of web site in dot net studio 2005

  • Thread starter Thread starter archana
  • Start date Start date
Archana,

First, you must build the project. Then, click the "Show All Files"
toolstrip icon as noted in Scott's article. You should then be able to see
the bin folder.

Hope this helps,


Steve
 
Hi,

thanks for reply.

but the dialog shown in that link is visible only for windows
application and not for web application.

For web application dll i created per page not for all code behind
file. So if that is the case, do i need to upload all cs files and
aspx pages while deployment. If yes then its like i need to set
permissions for cs file as these are code behind files.

Please correct me if i am wrong

thanks in advance.
 
Hi Archana

hii,

if it is a web application, it will be c:\Windows\InetPub\WWWroot\yourapp\debug

njoyyyyyyyyyyyyy.



archana said:
Hi all,

I am developing one web application in dot net 2005. Application is
running properly. Butt i am not getting where is bin folder?


Below link is showing that bin folder present in application folder.
http://webproject.scottgu.com/CSharp/HelloWorld/HelloWorld.aspx

but in my case its not shoiwng.

can anyone tell me why is it so?

thanks in advance.
 
archana,

Sorry, I re-read your original post. The bin folder only shows up if you
are importing custom assemblies. It does not work the same way as a
WinForms app.

For deployment, you can either copy up everything, though I'm not sure what
you are referring to with permissions. You shouldn't need to set up any
permissions on the target machine (related to the code files).

You can also choose to precompile the website and upload it's output. To do
this, right-click on the site root, and choose Publish.
http://msdn2.microsoft.com/en-us/library/ms247286(VS.80).aspx

Hope this helps,


Steve
 
Back
Top