vote up 0 vote down star

hi everyone,

I am trying to use form collection and this is what i am using to submit the form

 <%=Html.ActionLink("Update", "Calendar", ViewData["sub"], new { onclick =  "this.form.submit();" })%>

just for the heck of it i tried replacing it with a dropdownlist that retains its value and all of a sudden i get all my form collection

 <%=Html.DropDownList("dllMonth", new SelectList(new List<string>() { "January", 
    "Feburary", "March", "April", "June", "July", "August", "September", "October", "November", "December"}, ViewData["Month"]), new { onchange = "this.form.submit();" })%>

can somwone please explain whats going on

flag

63% accept rate

1 Answer

vote up 0 vote down

I changed my actionslink to this and now all is working fine

<a name="update" href="Calendar" onclick="this.form.submit();" type="submit">Update</a>
link|flag
so mark your answer as accepted! – darasd Sep 1 at 13:34

Your Answer

Get an OpenID
or

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