.net-3.5-sp1

Setting a form's action in .net 3.5 SP1 causes errors when compiled

I have recently installed .net 3.5 SP1. When I deployed a compiled web site that contained a form with its action set: <form id="theForm" runat="server" action="post.aspx"> I received this error. Method not found: 'Void System.Web.UI.HtmlControls.HtmlForm.set_Action(System.String)'. If a fellow developer who has not installed SP1 dep...

XmlSerializer changes in .NET 3.5 SP1

I've seen quite a few posts on changes in .NET 3.5 SP1, but stumbled into one that I've yet to see documentation for yesterday. I had code working just fine on my machine, from VS, msbuild command line, everything, but it failed on the build server (running .NET 3.5 RTM). [XmlRoot("foo")] public class Foo { static void Main() {...

HTTP Errors with .Net 3.5 SP1

I have a ASP.Net website that is failing on AJAX postbacks (both with ASP.Net AJAX and a 3rd part control) in IE. FireFox works fine. If I install the website on another machine without .Net 3.5 SP1, it works as expected. When it fails, Fiddler shows that I'm getting a 405 "Method Not Allowed". The form seems to be posting to pages...

.NET 3.5 SP1 changes for ASP.NET

Hi, I would like to test out the new SP1 in my development server and then install it for my production server. But I wonder what it had enhance to the ASP.NET portion specifically as that is where my concerns are. I read the docs found in the SP1 Download page but it seens a bit too general to me, not much on the ASP.NE portion. Anyon...

Will a VS2008 setup project update Net 3.5 SP1?

I just started using the WPF WebBrowser that is included in Net 3.5 SP1. I built my setup project (which I have been using prior to moving to 3.5 SP1) and installed it on a test machine but the WebBrowser was not available. What must I do to be sure that the setup.exe/msi combination checks for and installs SP1? ...

How do you uninstall Visual Studio 2008 SP1 w/ .Net 3.5 SP1?

What's the best way to uninstall SP1 and return to plain .Net 3.5 with Visual Studio 2008? It broke a few of my programs :( ...

What's new in SP1 for .NET 3.5

Is there an exact overview what has changed in the SP1 for .NET 3.5? New classes, methods, etc. For example, I've noticed there is a new WaitOne(TimeSpan) and WaitOne(int) overloads in the WaitHandle class. ...

Is there a way to extract .NET 2.0 from the .NET 3.5?

.NET Framework 3.5 SP1 installs the .NET Framework 2.0 SP2 and the .NET Framework 3.0 SP2 behind the scenes. These installation packages (especially .NET Framework 2.0 SP2) are not available directly from Microsoft. Is there a way to extract them from the .NET Framework 3.5 SP1 installation package? ...

Can I safely download and install .Net framework 3.5 SP1 without requiring my customers to upgrade their .Net Framework distributable? (currently running 3.5)

Can I safely download and install .Net framework 3.5 SP1 without requiring my customers to upgrade their .Net Framework distributable? EDIT: And without changing my build script EDIT: I'm currently running 3.5 ...

.NET 3.5 SP1 network shares allow exe application to run

I could probably find this out from somewhere else but thought it would be a nice question to have on stack overflow. .NET 2.0 by default stopped managed exe's running from network shares despite the fact you can run unmanaged exe's. I have seen mention's that this was changed in .NET 3.5 SP1 Is this true? Would that include any dll...

.net 3.5 SP1 Bootstrapper not found for Setup

I am getting a warning when trying to include the .net 3.5 sp1 prerequisite for my setup project. The warning states Prerequisite could not found for bootstrapping. Any suggestions? Thanks ...

Globalization of Membership exceptions isn't taking place... What to do?

I'm using the SqlMembershipProvider to carry out my ASP.NET website's user management. In particular, the site needs to be multi-lingual (globalized!). When I create users using Membership.CreateUser it's good that I get exceptions for things like duplicate emails, duplicate usernames etc. But what I want is to re-use that exception tex...

Effects on csproj file when upgrading to VS2008 SP1

We are in the process of upgrading our VS2008 to the new SP1, but noticed a change in the csproj files for something that we can't find information on. Seems that the ProductVersion in the csproj file is changed from: <ProductVersion>9.0.21022</ProductVersion> to <ProductVersion>9.0.30729</ProductVersion> It looks like some propert...

How to prevent ASP.NET 3.5 SP1 from overriding my action?

In my master pages I have <form ... action="" ...>, in pre SP1, if I viewed the source the action attribute would be an empty string. In SP1 the action attribute is overridden "MyPage.aspx?MyParams", unfortunately, this causes my postbacks to fail as I have additional pathinfo in the URL (ie. MyPage.aspx\CustomerData?MyParams). I have c...

ASP.NET MVC and .NET 3.5 SP1 on Windows Server 2003 and IIS

I am writing a website for a client who says their servers run the following: "Windows 2003 with the latest IIS". What do I need to do to get them ready for hosting my ASP.NET MVC website built with .NET 3.5SP1? ...

Using C# how should I go about extracting titles subtitles and paragraphs from a docx document.

Using C# how should I go about extracting titles subtitles and paragraphs from a docx document. I am thinking of doing this through VSTO but do know know the word object model. I am only familiar with the Excel object model. Should I take the unzip + linq to XML approach ? Using VSTO i could build an addin which could be used to edit ...

Why does the x.designer.cs part of the LinqToSql dbml triad disappear after an edit in the visual editor?

I ran into a particularly annoying issue. I have a LinqToSql project up and running.. A X.dbml file has three dependent files an X.cs, X.dbml.layout and X.designer.cs Now when I drop an additional table into the designer surface and rename the table, I get an property value is invalid 'unspecified error'. Weird. But then somehow your X....

Which is the best book out there to learn Linq, including Linq to Entities?

I heard lots of reviews on the book Linq in Action, but it does not cover Linq to Entities. Please provide your feedback on the books you may have read. ...

Can you develop using .NET 3.5 SP1 and run under just .NET 3.5

Can I develop a website which utilizes ADO .NET Entities in the .NET Framework 3.5 SP1 and then deploy it on another machine with just the .NET 3.5 framework? ...

Getting weird exception creating anonymous type after recreating Linq to SQL dbml (Or possibly after moving to .NET 3.5 SP1

We moved the .dbml file out of the website and into another assembly so it could be shared across multiple applications. The problem is that now I'm getting an error that doesn't make any sense. The basic query is like this: from D in Devices select new { EquipmentTypeID = D.DMXDeviceModel.DMXDeviceClass.DMXEquipmentType.ID, /...