ASP.NET 2.0哪里有DLL? [英] ASP.NET 2.0 where are the DLLs?

查看:73
本文介绍了ASP.NET 2.0哪里有DLL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Visual Web Developer 2005 Express Edition Beta

我做了Build |构建Web站点,DLL在哪里?我希望看到

可能是目录中每个网页的一个dll(可能仍然是bin)

Inetpub / wwwroot / mywebsite /


谢谢。

Visual Web Developer 2005 Express Edition Beta

I did Build | Build Web site, where are the DLLs? I was expecting to see
maybe one dll for each Web page in a directory (maybe still "bin") under
Inetpub/wwwroot/mywebsite/

Thanks.

推荐答案

默认情况下,新网站现在保存在我的文档文件夹下。


-

我希望这会有所帮助,

Steve C. Orr,MCSD,MVP
http://SteveOrr.net

" vwd2005eeb" < VW ******** @ vwd2005eeb.com>在消息中写道

news:uA ************** @ TK2MSFTNGP10.phx.gbl ...
By default new web sites are now kept under your My Documents folder.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"vwd2005eeb" <vw********@vwd2005eeb.com> wrote in message
news:uA**************@TK2MSFTNGP10.phx.gbl...
Visual Web Developer 2005 Express版本测试版

我做了Build |构建Web站点,DLL在哪里?我希望看到
可能是目录中每个网页的一个dll(可能仍然是bin)在Inetpub / wwwroot / mywebsite /

谢谢。
Visual Web Developer 2005 Express Edition Beta

I did Build | Build Web site, where are the DLLs? I was expecting to see
maybe one dll for each Web page in a directory (maybe still "bin") under
Inetpub/wwwroot/mywebsite/

Thanks.



您好我有同样的问题/疑问。我在

myDocument文件夹中找到了项目文件,但仍然不知道在哪里查找DLL文件?你找到答案了吗?
?谢谢


" vwd2005eeb"写道:
Hi I have the same question/problem. I found the project files in the
myDocument folder but still don''t know where to look for the DLL files? Have
you found the answer? Thanks

"vwd2005eeb" wrote:
Visual Web Developer 2005 Express Edition Beta

我做了Build |构建Web站点,DLL在哪里?我希望看到
对于目录中的每个网页(也许仍然是bin)可能有一个dll在
Inetpub / wwwroot / mywebsite /

谢谢。 />
Visual Web Developer 2005 Express Edition Beta

I did Build | Build Web site, where are the DLLs? I was expecting to see
maybe one dll for each Web page in a directory (maybe still "bin") under
Inetpub/wwwroot/mywebsite/

Thanks.



Albert和vwd2005eeb。


Beta 2改变了程序集的编译范例。 br />

如果您手动编译程序集,从命令行,

您可以将它放在/ bin子目录中,它将自动

已识别,您可以直接调用它包含的类,或者从您的aspx文件或其他程序集中调用它们。


所有其他源代码编译(C#,VB.NET和J#)将进入App_Code目录(当你创建

新的* .cs,*时将为你创建)。 vb或* .jsl代码文件)。


从App_Code目录中的源代码文件编译的程序集

将放在ASP.NET临时文件中目录。


通过将App_Code目录的子目录标记为特定语言,

并指向< codeSubDirectories>中的文件夹。元素

< compilation>在web.config部分,您现在可以在您的应用程序中使用多种语言




有关详细信息,请参阅Beta 2文档。


查找App_Code文件夹在索引的帮助中

并点击网站中的共享代码文件夹链接。


最好的问候,


Juan T. Llibre

ASP.NET MVP
http://asp.net.do/foros/

Foros de ASP.NET en Espa?ol

Ven,y hablemos de ASP .NET ...

======================


" Albert" ; <铝**** @ discussions.microsoft.com>在消息中写道

新闻:EB ********************************** @ microsof t.com ...
Hi, Albert and vwd2005eeb.

Beta 2 has changed the compilation paradigm for assemblies.

If you compile an assembly manually, from the command-line,
you can place it in a /bin subdirectory, where it will be automatically
recognized and you can just call the classes it contains, either from
your aspx files or from other assemblies.

All other source code compilations ( C#, VB.NET and J# ) will go into
the App_Code directory ( which will be created for you when you create
the new *.cs, *.vb or *.jsl code file ).

Assemblies compiled from the source code files in the App_Code directory
will be placed in the ASP.NET Temporary Files directory.

By marking subdirectories of the App_Code directory as language-specific,
and pointing to the folders in the <codeSubDirectories> element of the
<compilation> section of web.config, you can now use multiple languages
in your application.

Please refer to the Beta 2 documentation for more information.

Look up "App_Code Folder" in the indexed Help
and follow the link to "Shared Code Folders in Web Sites".

best regards,

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espa?ol
Ven, y hablemos de ASP.NET...
======================

"Albert" <Al****@discussions.microsoft.com> wrote in message
news:EB**********************************@microsof t.com...
您好我有同样的问题/疑问。我在
myDocument文件夹中找到了项目文件,但仍然不知道在哪里查找DLL文件?你找到了答案吗?谢谢

vwd2005eeb写道:
Hi I have the same question/problem. I found the project files in the
myDocument folder but still don''t know where to look for the DLL files? Have
you found the answer? Thanks

"vwd2005eeb" wrote:
Visual Web Developer 2005 Express Edition Beta

我做了Build |构建Web站点,DLL在哪里?我希望看到
对于目录中的每个网页(也许仍然是bin)可能有一个dll在
Inetpub / wwwroot / mywebsite /

谢谢。 />
Visual Web Developer 2005 Express Edition Beta

I did Build | Build Web site, where are the DLLs? I was expecting to see
maybe one dll for each Web page in a directory (maybe still "bin") under
Inetpub/wwwroot/mywebsite/

Thanks.



这篇关于ASP.NET 2.0哪里有DLL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆