Что предназначено Версией 2.0 ASP.net?

Вы ищете ng-disabled . Просто назначьте ему свойство из вашего контроллера. Когда это true, элемент будет отключен. Заполните это свойство значением из серверной части.

5
задан Preets 29 April 2009 в 06:29
поделиться

4 ответа

ASP. NET 2.0 - это просто приложение ASP.NET, работающее под CLR 2.0. Это настраивается в свойствах приложения в диспетчере IIS.

Приложения, предназначенные для платформы 2.0, 3.0 и 3.5, работают под управлением 2.0 CLR. CLR (за исключением нескольких критических изменений ) обратно совместим, поэтому фреймворк для приложения 1. Обычно 1 также может работать под 2.0 CLR.

Каждый пул приложений в IIS может использовать только одну версию CLR, поэтому все приложения в пуле должны использовать ASP.NET 1.1 или ASP.NET 2.0. Если вы попытаетесь смешать версии CLR в пуле приложений, сайты в пуле перестанут работать.

4
ответ дан 18 December 2019 в 14:51
поделиться

ASP.NET 2.0 is the framework that shipped with .NET 2.0 (and thus CLR 2.0). In most ways, this number currently aligns most closely with the CLR version, in that although .NET 3.0 / .NET 3.5 add extra assemblies that can (and are) used by ASP.NET applications, there is no new ASP.NET version number.

Re your last point... "nothing changes"... well, the code that runs is largely dictated by the class libraries. So; yes, there are new dlls, and minor tweaks to the older dlls. But indeed, the core technology itself remains more or less the same.

6
ответ дан 18 December 2019 в 14:51
поделиться

ASP.Net indeed uses the CLR 2.0. This also means there is a seperate aspnet_wp.exe running. SO if you have both 1.1 and 2.0 asp.net sites running you'll see two aspnet_wp processes in the task manager.

On top of that there are several new features for asp.net 2.0. Some stuff I can think of includes Master Pages, styles, better controls, split up view state/control state, improved compression of viewstate and much more

3.5 uses CLR 2.0 so there is no difference in worker processes used.

For all info: check the asp.net site: http://msdn.microsoft.com/en-us/asp.net/default.aspx

2
ответ дан 18 December 2019 в 14:51
поделиться

There are a lot of differences between ASP.NET and ASP.NET 2.0. The .NET Framework page on wikipedia is actually pretty good at describing how the Framework has evolved from 1.1 to 2.0 to 3.0 to 3.5 and it will be 4.0 soon. :)

1
ответ дан 18 December 2019 в 14:51
поделиться
Другие вопросы по тегам:

Похожие вопросы: