MVC Return To Page On Error With Fields Populated?
Jan 13, 2011
I am starting a new project in Asp.net MVC 2.I have been mostly a webforms developer and have limited exposure to Asp.Net MVC and hence this is probably a noob question.
My situation is as follows:
I have a create page for saving some data to the DB. The view for this page is not strongly bound / typed - so the way I am extracting the data from the view is by looking at the POST parameters.
Incase there is an error (data validation, etc), I need to send the user back to the previous page with everything filled in the way it was and displaying the message.
[Code].....
View 1 Replies
Similar Messages:
Jan 19, 2011
I am putting a C# asp.net web form together that has a number of fields that we want to ensure data is inputted in them. I have added the RequiredFieldValidation control, but I am unsure what to put in the Button_Click event. I want the click event to check the fields and if not filled in, preserve the fields that already have data and then return the page data with the missing fields so that they user can take corrective action.
View 5 Replies
Feb 17, 2011
I'm writing a small web application in c# and i'm running into a small problem.
Basically, on page_load() my backend MySQL db is queried to bring back the user data, and that is then inserted into the textbox controls as below:
[Code]....
Now the problem occurs when the RequiredFieldValidator kicks in. In my form processing function, I call Page.IsValid(), it fails and displays the required message next to the required fields.
I was wondering if there is a workaround for this, or a better way to go about what i'm trying to do.
View 4 Replies
Mar 10, 2011
I have the following code which simply gets data from a table and populates the questions_lb listbox with items. I have a button on the page, which when clicked, should write (on submit) the selected state of each of the items. The code below writes the text values of each of the items fine however it always writes the li.Selected as False even though i have selected items from the list. Note that you can select Multiple items from the list. Does anyone have a clue why its not writing 'True' for an item that is selected on submit?
[Code]....
View 4 Replies
Jan 30, 2011
I'm trying to return an error page indicating that the user couldnt be found and therefore I throw a HttpException with status code 404, however for some reason it wont redirect to the error page? - Is there some sort of trick to handle error pages with JSON that I should be aware of? My current code:
public ActionResult Details(int id)
{
User userToGet = _session.Query(new GetUserById(id));
if(userToGet == null)
{
throw new HttpException(404, "User not found");
}
DetailsUserViewModel userToViewModel = AutoMapper.Mapper.Map<User, DetailsUserViewModel>(userToGet);
return Json(new
{
HTML = RenderPartialViewToString("Partials/Details", userToViewModel)
}, JsonRequestBehavior.AllowGet);
}
Update - Some more code:
// MyJs.js
function openBox(object) {
$("body").append("<div id='fadeBox'></div><div id='overlay' style='display:none;'></div>");
$("#fadeBox").html("<div style='position:absolute;top:0;right:0;margin-right:2px;margin-top:2px;'><a id='closeBox' href='#'>x</a></div>" + object["HTML"])
$("#fadeBox").fadeIn("slow");
$('#wrapper').attr('disabled', 'disabled');
$("#overlay").show();
jQuery.validator.unobtrusive.parse('#mybox') /* Enable client-side validation for partial view */
}
// List.cshtml
@model IEnumerable<MyDemon.ViewModels.ListUsersViewModel>
<table style="width:100%;">
<tr style="font-weight:bold;">
<td>UserId</td>
<td>UserName</td>
</tr>
@foreach (var user in Model)
{
<tr>
<td>@user.UserId</td>
<td>@user.UserName</td>
<td>@Ajax.ActionLink("Details", "details", "account", new { id = @user.UserId }, new AjaxOptions() { HttpMethod = "GET", OnSuccess = "openBox" })</td>
</tr>
}
</table>
View 1 Replies
Feb 10, 2011
Created an solution containing several class libraries (domain, contracts, etc, etc) and an Asp.Net MVC3 project. Created a database in my local sql server (2008) and ran aspnet_regsql.exe to create the relevant membership and authentication tables. (Though I did not create any code yet that uses it, and plan to just implement the standard forms and membership authentication.) However, when I click on the "Asp.Net Configuration" button in VS (2010), it open the Asp.Net Web Site Administration Tool, but with an error that say "An error was encountered. return to the previous page and try again." (of course there's no "previous page). Only reason i want to use this is actually to create two roles, admin and client. Guess my problem is not knowing where this tool get it's connectionstring from. At present, I got the following in my web.config
[Code.....]
View 4 Replies
Mar 10, 2010
I got a view that uses the ajax.beginform tag.This works great but if I want to do some validation to the data and then return a error message to the page it doesnt work for me.Here my code :
[Code]....
And the actionResult :
[Code]....
[Code]....
View 5 Replies
Jul 27, 2010
How can I configure ASP.NET/IIS to show custom error pages (i.e. a nice friendly error page), but to still return a 404/500 status code so that google does not try to index the page? I have tried setting the Response.StatusCode to 404, but then the nice error page does not show anymore.
View 2 Replies
Jul 12, 2010
I am calling a file download action from javascript:
$elem.click(function() {
window.location.href = 'MyController/MyFileDownloadAction';
});
The controller returns a file:
[code]...
This action has a pretty high likelyhood of throwing an exception (or at least not being able to return the file).
Due to the nature of the application (which contains a lot of dynamic content), I can't really redirect to an error page in this situation. The current page needs to stay open somehow.
So I'm ideally looking for something like a javascript pop-up, but afaik this isn't going to be possible since I don't know any way to return a javacript instruction in a non-ajaxed controller call. If I display an error page I need to force it to open in a new window some how. Is there any possible solution to this problem?
View 1 Replies
Sep 28, 2010
how can i return 401 error from a method return ActionResult?
View 1 Replies
Jul 22, 2010
I Have a problem here with Visual Web devoloper 2010 , When I click the "Asp.net Configuration" , the browser doesn't open the Web Site Administration Tool but the icon does appear in the notification area , on right clicking the icon it opens up the Web Site Administration Tool in the browser and displays "An error was encountered. Please return to the previous page and try again."
On the other hand I don't have any issues using "Asp.net Configuration" with Visual Web Devoloper 2008
View 5 Replies
Mar 16, 2010
I have a method in my button code to run the query, it returns a value and save it to a Session variable to be used later, this code works.Dim connString As String = ConfigurationManager.ConnectionStrings("DBConnectionString").ConnectionStringUsing myConnection As New SqlConnection(connString)
Const sql As String = "SELECT Rate1 FROM Rates WHERE (LayerID = '01')"
Dim myCommand As New SqlCommand(sql, myConnection)
myConnection.Open()
[code]...
View 4 Replies
Sep 28, 2010
I'm using Ajax to dynamically populate a DIV. I have each page content stored in XML files as CDATA. When a user clicks on a link from the navigation bar, the Ajax loads the XML for that particular page, parses it, and populates the DIV with it's content.
Everything is working GREAT, except for one thing. I have a jQuery modal popup whose markup is loaded from that page's XML file. The .js and .css files from the jQuery plugin are all loaded, and when this is HARD CODED (i.e., not loaded from XML), it works fine. But when it's loaded from the XML, the modal doesn't work.
When the page is loaded from the XML file- What the page is supposed to do is load the HTML from the XML file, which it does, and there's a hyperlink that when clicked, it's supposed to create the modal popup window. Instead, clicking on the link does NOT fire up the modal popup window.
When the page is hard coded- it does everything it's supposed to do.
A live example is at:
http://mikemarks.net/clientSites/tabras/
Click on "The Band", and at the bottom you'll see the hyperlink called "Demo". Clicking on that should bring up a modal popup window, but instead as you can see it just takes you to the top of the page.
Below is my markup (notice the div id="copy", which is the placeholder for my HTML content that's loaded from the XML file), my Ajax JavaScript code, and my XML file (which is shown as the markup that's loaded into the div id="copy").
<div id="leftTwoThirdsColumn">
<div id="menu">
<ul class="menu">
<li style="width:65px;"><a id="default" href="#" onclick="makeRequest('xml/default.xml');"><span>Home</span></a></li>
<li style="width:65px;"><a id="lyrics" href="#" onclick="makeRequest('xml/lyrics.xml');"><span>Lyrics</span></a></li>
<li style="width:110px;"><a id="merch" href="#" onclick="makeRequest('xml/merch.xml');"><span>Merchandise</span></a></li>
<li style="width:93px;"><a id="bio" href="#" onclick="makeRequest('xml/bio.xml');"><span>The Band</span></a></li>
<li style="width:80px;"><a id="contact" href="#" onclick="makeRequest('xml/contact.xml');"><span>Contact</span></a></li>
<li style="width:150px;" class="last"><a id="friends" href="#" onclick="makeRequest('xml/friends.xml');"><span>Friends of Tabräs</span></a></li>
</ul>
</div>
<br /><br />
<div id="copy">
</div>
</div>
function makeRequest(url)
{
if(window.XMLHttpRequest)
{
request = new XMLHttpRequest();
}
else if(window.ActiveXObject)
{
request = new ActiveXObject("MSXML2.XMLHTTP");
}
sendRequest(url);
}
function sendRequest(url)
{
request.onreadystatechange = onResponse;
request.open("GET", url, true);
request.send(null);
}
function checkReadyState(obj)
{
if(obj.readyState == 0) { document.getElementById('copy').innerHTML = "Sending Request..."; }
if(obj.readyState == 1) { document.getElementById('copy').innerHTML = "Loading Response..."; }
if(obj.readyState == 2) { document.getElementById('copy').innerHTML = "Response Loaded..."; }
if(obj.readyState == 3) { document.getElementById('copy').innerHTML = "Response Ready..."; }
if(obj.readyState == 4)
{
if(obj.status == 200)
{
return true;
}
else if(obj.status == 404)
{
// Add a custom message or redirect the user to another page
document.getElementById('copy').innerHTML = "File not found";
}
else
{
document.getElementById('copy').innerHTML = "There was a problem retrieving the XML.";
}
}
}
function onResponse()
{
if(checkReadyState(request)) {
var response = request.responseXML.documentElement;
var root = new Array();
root = response.getElementsByTagName('');
//alert("Total Number of HTML Elements Found: " + response.getElementsByTagName("").length);
var html = '';
for (var i = 0; i < root.length; i++) {
var tagName = response.getElementsByTagName("").item(i).nodeName;
var tagObj = response.getElementsByTagName("").item(i);
html += tagObj.firstChild.nodeValue;
}
document.getElementById('copy').innerHTML = html;
}
}
<div style="padding-top:5px; margin-left:auto; margin-right:auto; text-align:center;">
<img src="images/ShawnBioActive.png" />
<img src="images/JasonBioActive.png" />
<img src="images/WillBioActive.png" />
<img src="images/RasoulBioActive.png" />
<img src="images/bioStrip.png" />
<div id='basic-modal'><h3>Basic Modal Dialog</h3><p>A basic modal dialog with minimal styling and no additional options. There are a few CSS attributes set internally by SimpleModal, however, SimpleModal relies mostly on style options and/or external CSS for the look and feel.</p><input type='button' name='basic' value='Demo' class='basic'/> or <a href='#' class='basic'>Demo</a></div><script type="text/javascript" src="../js/modal/jquery.simplemodal.js"></script><script type="text/javascript" src="../js/modal/basic.js"></script><link type="text/css" href="../css/modal/demo.css" rel="stylesheet" media="screen" /><link type="text/css" href="../css/modal/basic.css" rel="stylesheet" media="screen" /><script type='text/javascript'>jQuery().ready(function () {$('#basic-modal-content').modal();});</script>
<div id="basic-modal-content"><h3>Basic Modal Dialog</h3></div><div style='display:none'><img src='images/modal/basic/x.png' alt='' /></div></test2>
</div>
View 2 Replies
Aug 5, 2010
My page includes a button and a GridView bound to a LINQ data object which is bound to a table. when the page loads the gridview gets populated with the data and all work well. The button has an empty method, when I click the button I get en error message "Intenet explorer cannot display the web page" I put a break point at the begining of the method listed below but I get the error message before it gets there. If I remove the gridview than the button works well.
[Code]....
View 2 Replies
Jun 10, 2012
I populate mete tag from database according to this thread [URL] ....
In store.aspx page i have this behinde code
protected void Page_Load(object sender, EventArgs e) {
string data = Server.UrlDecode(Request.QueryString["BehCode"]);
SqlCommand _cmd = new SqlCommand("storeInfo", _cn);
_cmd.CommandType = CommandType.StoredProcedure;
_cmd.Parameters.AddWithValue("@BehCode",data);
_cn.Open();
[Code] ....
Here instead ofÂ
stringkeyword = _dr[0].ToString();
I put
string keyword = _dr["Keyword"].ToString();
Â
But when i run website and see viewsource it doesn't show any thing in meta tag.
View 1 Replies
Feb 19, 2010
I'm populating my nodes from SQL 2008. My Defauld.aspx is also devided into frames. leftmenu is frame on left. topframe is frame on top and mainframe is frame right center. In my leftmenu frame LeftMenu.aspx display a SQL populated treeview. if I click on the child node it opens Home.aspx in the Main Frame. This is pretty straight forward. My problem is that i can't get the value of that populated node over to a textbox on my Home.aspx page that is displayed in the mainframe on the right. My code is as follows:
void PopulateSubModule(TreeNode node)
{
SqlCommand sqlQuery = new SqlCommand("Select * From SubModule " + " Where ModuleID = @ModuleID");
sqlQuery.Parameters.Add("@ModuleID", SqlDbType.Int).Value = node.Value; [code]....
View 1 Replies
Nov 8, 2010
We do have a search page for customers which returns a list of data from a table.
Once we select on an item it should redirect to another page with customerId as a querystring parameter..
Now the problem is we have to save all the customerIds and need to send them to display page..and need to select next one once they done with previous one without going to the search page again..
Example:
if they got 10 customers in the search page then we need to send all 10 ids to display page by starting display of firstone and once they select next button on display page they have to move on to the next cutomer from that list..if they reached the end of list they have to start again from the first...we need to avoid the user going to the search page for each customer every time...
View 4 Replies
Feb 24, 2010
I have a date field (OrderTimeStamp) in Database which allow nulls.When I try to return this field in my LINQ Query I get this following error.Cannot Convert expression type System.Nullable<System.DateTime> to return type System.DateTime
I do not get this error when I try to return other fileds which also allow nulls. Like FirstName and LastName. Then Why I get error when I try to return a date field?
[code]....
View 3 Replies
Mar 4, 2010
I am using ASP.NET MVC for developing a web site. I am using jquery for AJAX functionality. In the action methods, I want to return some error to signal that the input is not correct or that the action could not be performed. In such error cases, I expect the jquery ajax error handler to be called and I can take appropriate action in there. I have not found a way how to do this. Following is my action method.In error cases, what should I be sending from an Action in order to get the jquery error handler triggered?
public ActionResult AddToFavourites(int entityId, string entityType)
{
if (!Request.IsAjaxRequest())
[code]...
View 2 Replies
May 7, 2015
I have a data driven asp.net website with frames on the top, left, right and center screen. If a page generates an error on any of the frames, I want to redirect the whole site back to the Default.aspx. Currently, when a frame page errors in one of the frames, that frame gets the error pages. Site is URL.... Is this something that can be handled?
View 1 Replies
Jan 3, 2011
I am using three listviews on a page ... the first is always populated ... the other two are sometimes populated I want to total amounts and counts from all three ... so I set up steps in the DataBound events works great when all three listviews are populated the error "Object Variable or With block variable not set." occurs when LV2 or LV3 is not populated I've tried testing DataItem ... Is Nothing but get the failure on the If test instead
View 3 Replies
Mar 5, 2010
I've got an ActionMethod that returns a JsonResult object and this isn't returning data to the calling jquery function. I have used wget to send and receive raw data to it, and I've discovered that when the object dataset is empty, it returns a value fine and the wget return is
HTTP request sent, awaiting response... 200 OK
Length: 78 [application/json]
Saving to: `filename'
but when there is data in the object dataset I get an internal server error:-
HTTP request sent, awaiting response... 500 Internal Server Error
2010-03-05 13:21:16 ERROR 500: Internal Server Error.
This is a dataset of objects being returned - are there any common "gotchas" when doing this?
View 8 Replies
Jan 19, 2011
How to make the linq throw error, when not null columns are there in the table.
Why I am saying, it is. I tried to add to column in the table. Linq throwed error os some sort. I could not understand. it was like some innner table etc.
I had to resort to native sql, which showed the error, as the not null fields are there in the table.
View 5 Replies
Aug 19, 2010
unable to clear the fields after reading different posts! I am wondering if the syntax in the subroutine InsertRecord is correct.
Below is the code:
[Code]....
[Code]....
View 5 Replies
Oct 28, 2010
I am showing Custom Error in my page.if somehting happend wrong. but if the same error occured in my subview master page I am not able to show the Custom error page on Entire page its showing me that Error page under subview master page.I am attching the Screen shot.Can any body help me out how to show the Error page on entire page if something happend in any where submaster or other page.Here is the code that I am using in web config file to show custom Error page..
[CODE]...
Here I know the issue what's going on.This issue is occurring because i am using AJAX to partially load the contents of the tabs after the initial page load so the error is occurring AFTER my master page has been loaded.What I need to do is provide a javascript function to handle the error after the ajax call has returned and redirect to the error page.How to write this Javascript and where Do I need to write this?
View 4 Replies