asp.net-mvc

checkbox value in jquery

i'm using Mvc checkbox. by default the rendering a checkbox like below. <input id="test" type="checkbox" value="true" name="test"/> <input type="hidden" value="false" name="test"/> so whn itry to access $("#tets").val() returns true, but defaultly it is false. Any idea how to access checkbox using jquery ...

Navigation control for ASP.NET MVC

Hi, I have created an ASP.NET MVC project for dealing with buildings and environment classifications. Now i would like to create a navigation control that helps my user. The idea is that on top of the every page there will be a vista like folder structure path that explains where the user is. To make an example Start > Country1 > Stat...

MVC Partial Controls

Ok I have a menu system with a menu (Dynamicly Generated from a datavbase field) I want to include this menu system on several views - All of which use differant controllers and models. <ul> <li><a href="#">All</a></li> <% foreach (var curCat in Model.CategoryList) { ...

Asp.net MVC with ViewState?

Just read blog post of Maarten Balliauw. Wanted to ask will <%Html.Serialize("person", Model); %> return bunch of 'don`t-stop-debugging-heavily-server-sided' RAD controls? Is that's a good idea to include this? If so - what kind of usage would be appropriate? ...

Prevent postback in current page while chunking and sending data to a WCF service

hey guys, I have a silverlight app on an MVC page that user's can draw on, when they click save an event fires in both MVC and silverlight The MVC event redirects to a page where the drawing is reloaded so the user can confirm it was saved correctly (viewed on another silverlight app) The silverlight application event fires off a rout...

ASP.NET MVC Configurable Static Text

I am currently working on a project that requires Static Text to be configurable(including labels, messages, and validation errors). I was wondering what the best approach would be. The app is being written using ASP.NET MVC and C# 3.5. I need all this static configurable text to be fed to the MVC project from a different project. I thou...

How to Convert to DateTime on HTML.Textbox?

I have a textbox that should accept datetime formats only. I am not sure how to convert this in MVC. I also want to know how to rearrange to a "yyyyMMdd" format, which is what needs to be passed. <%=Html.TextBox("effectiveDate") %> My controller has nothing :X public ActionResult Index() { return View(); } I know I am miss...

Two-Way-Binding Possible In ASP.NET MVC?

Let's say I have a product object (pretty much empty) and I bind it to a Product view. Then I click update in the view. In my CustomModelBinder my bindingContext.Model is always null on the update request. Is there a recommended way of me retrieving the prior model at this point or do I always have to recreate it? ...

What are the pros and cons of Areas implemented as single projects vs multiple projects in asp.net mvc

The app I'm working on is large enough to break up into areas, but before I do so, I was hoping to get a better idea of when to implement areas in a single project versus multiple projects. This article only mentions team size as a factor for choosing, but that doesn't really make sense to me http://msdn.microsoft.com/en-us/library/ee46...

jQuery ASP.NET MVC - $.post() to a different URL path in different environments

Consider the need to $.post() to a slightly different URL structure in the Visual Studio Dev environment vs. deployed IIS Production or Test environment. When deployed to the Test server, the app is running under a Virtual Directory in IIS. The URL will be something like: Deployed URL: http://myServer/myApplication/Area/Controller/Ac...

Good web hosting for ASP.NET MVC 1.0 app

I'm looking for hosting for an ASP.NET MVC 1.0 app. I've narrowed down with research to either asphostportal, asphostcentral, godaddy, or 1&1. I've ruled out crystaltech and softsyshosting due to price with better plans. Will be running a small e-commerce site written with ASP.NET MVC 1.0 and want to be sure it will work, as well as...

MVC wysiwyg editor?

Hello I was wondering if you guys know a good wysiwyg editor to use with asp.net mvc? I've been looking on the Telerik Editor and it seems really nice. Which ones do you guys recommend using with asp.net mvc? or will any work in views as with "regular" asp.net Best regards /M ...

Asp.net MVC - How can I get user roles without knowing these roles?

Hi! I'm working on this project that an admin user can create some User's Groups that will be working as the project roles. So, the admin will create a User Group named "SuperAdmin" and will select in a dropdownlist the users that will be part of this group. I've worked before in a solution using RoleProvider and using Controller's At...

ASP.NET MVC in a subfolder (only) on godaddy

Okay, I have read many of the routing posts concerning putting asp.net mvc on godaddy. However, I have not come to a solution to my current problem. I am trying to publish an ASP.NET MVC application to a subfolder on godaddy. I have upgraded the account to use IIS 7 and I have included the MVC dlls in \bin\ deployment method. However, I ...

Why don't themes sit well in the MVC paradigm?

I am working with the new ASP.NET MVC areas and mixing it with themes. In MVC without areas I used to apply themes by adding <pages theme="ThemeName" ... > ... </pages> to the Web.Config in the Views folder, and it worked perfectly. Now that I have an Areas folder, each with its own Web.Config, my theme is only applying to controlle...

ASP.NET MVC Finding out the caller to a method when !ModelState.IsValid

I have action method on my "CartController" an AddtoCart that returns an ActionResult. The problem I'm having is that I post from antoher controller to the AddtoCart the Id of the product i want to add, then move on. I have no problem with the validation; however, it's when I want to redirect to the View that called the Action when th...

Doing custom binding for a specific data-type in a ModelBinder

I'm in the process of creating my own custom ModelBinder that inherits from DefaultModelBinder, and manually binds XElement-typed properties. Now it seems that I have to override the 'BindProperty' method, like so: protected override void BindProperty( ControllerContext controllerContext, ModelBindingContext bindin...

ASP.NET MVC getting last modified date/FileInfo of View

I'm required to include the last modified date on every page of my applications at work. I used to do this by including a reference to <%= LastModified %> at the bottom of my WebForms master page which would return the last modified date of the current .aspx page. My code would even check the associated .aspx.cs file, compare the last mo...

MVC and JQuery: Best pratice for retreiving form data

Hi there, I have some JQuery that uses Ajax to send information back to my controler to be processed I am doing it like this: //Define my controls <%=Html.TextBox("PName", Model.PName, new { id = "pName" })%> ... .... .... //Get the values from my controls var param1= $("#pName").val(); .... .... //Define the return URL. Is thi...

How to control conditional display of partial views in ASP.NET MVC

In our standard web forms ASP.NET solutions we typically have a range of user controls within the master page and determine whether they display or not within their code behind. What is the best approach within ASP.NET MVC to achieve the same goal? You could obviously put if statements within the master page or the partial view but that...