Click here to Skip to main content
15,886,798 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi all,

I am developing a MVC4 website for mobile (using Razor View Engine). I am having problem in creating postback.

I have tried to put Input buttons on page using following code:
Razor
@{
    ViewBag.Title = "TestView";
}

<h2>TestView</h2>
@using (Html.BeginForm("TestView", "Sell"))
{
    <input type="submit" value="Cancel" name="action" />
    <input type="submit" value="Create" name="action" />
}
    <input type="submit" value="test" name="action" />

But I get "Error Loading Page" error, if I click Buttons inside Begin.Form.
If I click the button outside nothing happens.

Can anyone help me in this regard?

Also, If anyone know how to Display ViewData Text as Div's Inner HTML?

Thanks
Ashish
Posted
Updated 27-Sep-12 4:55am
v2

1 solution

The solution was I created the new project and merged the code in new project & bingo It worked.

But I couldn't findout the reason for that behaviour of first project.

But anyway my project has started handling the post-backs.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900