0
如何使用在asp.net 2.0中編碼的asp.net 4.0中的代碼? 我使用IIS 7.0。一起工作ASP.NET 2.0和4.0
當我努力用它,我得到錯誤:
Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive.
(targetFramework是在web.config)
如何使用在asp.net 2.0中編碼的asp.net 4.0中的代碼? 我使用IIS 7.0。一起工作ASP.NET 2.0和4.0
當我努力用它,我得到錯誤:
Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive.
(targetFramework是在web.config)
你需要運行在設置應用程序池的應用程序使用框架4.0。
每個應用程序池只能使用一個版本的框架,所以如果你在服務器上有2.0和4.0應用程序,他們需要在單獨的應用程序池中運行。
你是什麼意思「一個代碼」 - 一個代碼片段,例如一個類,一個程序集,一個完整的Web應用程序? targetFramework在你想要運行的地方在哪裏 - 是web.config中的一個屬性? – Rup
是的,它是web.config中的一個屬性。 – ToUpper