ASP.NET MVC & Web Services
Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC?
Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC?
I need to execute an infinite while loop and want to initiate the execution in global.asax.
My question is how exactly should I do it? Should I start a new Thread or should I use Async and Task or anything else? Inside the while loop I need to do await TaskEx.Delay(5000);
On the jquery postback if the model state is invalid I want to show the validation error messages using jquery unobtrusive validation. I have created a sample application. The viewmodel in the application is as below
anybody how can I know if the request is ajax ? (I’m using jquery for ajax)
I just want a simple drop down list that will be populated by an IEnumerable. I have @model WebApplication4.Models.VENDOR The model contains an IEnumerable of BANK objects. I want the dropdown to be populated by a field of these objects, BANK_NAME. I’m new to MVC and .NET. This seems like an easy task, I just … Read more
I am currently deploying my application built using RC of MVC ASP.NET on the production server which is showing nothing now.
The routes in my global.ascx are typical i.e.
I need to highlight active link in the menu. My menu is in the master page by the way. I’m looking for the best way to implement this? Any ideas?
I wonder what I don’t do correct here. I am using ASP.NET C# MVC4 and I want to take use of new css/js optimization feature.
Whenever I create a new application with visual studio 2013 express for web and using the individual accounts authentication and i hit the register button I notice that it implements ‘Email’ instead of ‘Username’ and the same is in the LoginViewModel as it uses Email to Sign in instead of Username. How can i change this to use Username instead of the default Email without trouble? Also i would like to know how to convert the default ‘guid’ that is a string type to ‘id’ (integer type).
I am trying to convert HTML to PDF with iTextSharp in MVC Razor, but everything I have tried has not worked. Does anyone know how to accomplish this?