vote up 6 vote down star

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 deploys the compiled site it works fine. Does anyone know of any solutions for this?

flag

7 Answers

vote up 5 vote down check

.NET 3.5 SP1 tries to use the action="" attribute (.NET 3.5 RTM did not). So, when you deploy, your code is attempting to set the HtmlForm.Action property and failing, as the System.Web.dll on the deploy target is RTM and does not have a setter on the property.

link|flag
wonderful! this solved my problem! – stefano m Nov 20 '08 at 11:24
vote up 1 vote down

I don't know the specific solution, but HtmlForm.set_Action() is a function the compiler creates that acts as the setter for a property called Action.

When you do:

public String Action { set { DoStuff(); } }

The set code actually becomes a function called set_Action.

I know it's not the best answer, but I hope it helps you find the source of your problems!

link|flag
vote up 0 vote down

I just ran into the same problem. From what I understood it is indeed caused by the fact the my PC has .NET 3.5 SP1 on it, and the server to which I deployed the project doesn't.
From what I understand, one solution is that the server be updated with .NET 3.5 SP1. As I don't want to do that yet, I just removed the "action" attribute from all the forms in the project, and that solved the problem.
Read more

link|flag
vote up 0 vote down

Could use the method here to set the form.action method:

link|flag
vote up 0 vote down

All mentioned above is true...

In fact, when one installs 3.5 SP1, it automatically updates 2.0 and 3.0 with their own SP2. So, if you are using 2.0 for an application, you'll get the error.

In addition, SP1 on .Net2.0 did not cause the problem.

link|flag
vote up 0 vote down

Hi,

There is another solution to this. Write a javascript that would set the action of the form to the expected url at Page_Load and register the script at page load.

Thanks, http://www.dilrukshidevapriya.blogspot.com

link|flag
vote up 0 vote down

Basta instalar o framework 3.5 SP1 que funciona.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.