Hello. I have a form with submit button and when i press "submit" then blank page is showing but I want it to stay on a current page. Is it possible?
<form method="post" action=@Url.Action("SomeData", "App")>
<input id="text" name="text" type="text" value="" />
<div><input type="submit" value="Submit" /></div>
</form>
Go to the complete details ...