Hi MCM,
As for the configuration elements you mentioned, they're those strong-named
assemblies which are referenced globally in your ASP.NET web
application(every page in the web application will be referencing them).
And here is a brief summary of these assemblies:
><assemblies>
> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" />
> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0,
>Culture=neutral, PublicKeyToken=B77A5C561934E089" />
> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" /> =====================================
These ones are the core assemblies for the .NET 3.5 components and
services(such as LINQ)
> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=31BF3856AD364E35" />
> <add assembly="System.Web.Extensions.Design, Version=3.5.0.0,
>Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> =============================
These two ones are for ASP.NET ajax service (contains many extension
classes components which is necessary to make ASP.NET ajax work)
> <add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
>PublicKeyToken=B03F5F7F11D50A3A" />
> <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" />
></assemblies> ======================================
I'm a bit surprised that your application references the "winform"
assembly, are you using some winform class in your ASP.NET application?
Here is a blog entry which also give some general ideas on many new
asssmblies involved in ..NET 3.5
http://www.danielmoth.com/Blog/2007/...mework-35.html
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@xxxxxx.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/...tance&ln=en-us.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?TUNN?= <MCM@xxxxxx>
>Subject: web.config required elements
>Date: Wed, 20 Aug 2008 12:46:42 -0700
>The following sections appears in my web.config file.
>
><configuration>
><system.web>
><compilation>
>
><assemblies>
> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" />
> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0,
>Culture=neutral, PublicKeyToken=B77A5C561934E089" />
> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=31BF3856AD364E35" />
> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" />
> <add assembly="System.Web.Extensions.Design, Version=3.5.0.0,
>Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
> <add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
>PublicKeyToken=B03F5F7F11D50A3A" />
> <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
>PublicKeyToken=B77A5C561934E089" />
></assemblies>
>
>
>What does each of these assemblies do and how do I know if I need them or if
>I can delete them?
>
>I am working on a .NET 3.5 web application which uses AJAX. It will be
>hosted on Server 2008 w/ IIS 7.
>