Is there a URL validator on .Net?
Is there a method to validate URLs in .Net, ASP.Net, or ASP.Net MVC?
Is there a method to validate URLs in .Net, ASP.Net, or ASP.Net MVC?
In ASP.NET 5 MVC 6 Microsoft merged the normal MVC controller class (Controller) with the Web Api controller class (ApiController). Now there is just a Controller class to inherit from, which includes the features of WebApi too.
I need a way to upload large files (600 mb to 4 gb) in an asp.net mvc website.
Currently I am using swfupload; it works well enough, but it is a huge hit on the webserver because it sends it in one big upload, plus I have to set it in the web.config to allow that huge of a file, which is a huge security risk. In the past when I was doing web forms development I used Neatupload which breaks up the file into chunks and uploads them individually. I am looking for a way to upload large files in mvc that uploads via chunking it up. Any ideas on how I could do this?
I have nUnit installed. I have VS2008 Team Edition installed. I have ASP.Net MVC Preview 4 (Codeplex) installed. How do I make Visual Studio show me nUnit as a testing framework when creating a new MVC project? At this point I still only have the Microsoft Testing Framework as a choice. Update: I installed nUnit … Read more
I have an ASP.NET MVC 5 app where I need to invoke wkhtml2pdf.exe in my Azure website using Process.Start. Locally everthing works fine. But it seems my app stuck at Process.Start line. Is starting a process is supported on Azure?
With NInject (preferably 2.0), what options do we have wrt wiring up our object dependencies in a web application?
I have an ASP.NET MVC3 C# .NET Application running on IIS 7.5.
I am developing an ASP.NET MVC 3 application, whose content pages have a common pattern of layout elements. However, because the login page does not follow this layout, I cannot place this layout in ViewsShared_Layout.cshtml. So I would like to add another shared layout, say, ViewsShared_Content.cshtml, and call it from the content views… but unfortunately … Read more
I’m quickly falling in love with ASP.NET MVC beta, and one of the things I’ve decided I won’t sacrifice in deploying to my IIS 6 hosting environment is the extensionless URL. Therefore, I’m weighing the consideration of adding a wildcard mapping, but everything I read suggests a potential performance hit when using this method. However, I can’t find any actual benchmarks!
I want to test if the checkbox is checked or not from my action method. What I need is to pass checkbox value from view to controller.