By Stephen Jackson, on February 20th, 2012%
MVC 4 introduces a new Display Mode feature which enables us to create different version of view and it will select appropriate view version based on requesting browser. For e.g. if desktop browser is requesting home page then it can render Views\Home\Homepage.cshtml and if the mobile or tablet browser request home page then it can render . . . → Read More: ASP.NET MVC 4 Hosting :: Display Mode in ASP.NET MVC 4
By Wayne Plotche, on February 16th, 2012%
On IIS 7 or IIS 7.5, requests with a URL like the following are not able to find pages that have the .cshtml or .vbhtml extension:
http://www.example.com/ExampleSite/ExampleFile
The issue arises because URL rewriting is not enabled by default for IIS 7 or IIS 7.5. The likeliest scenario is that you do not see the problem when testing locally . . . → Read More: ASP.NET MVC 3 Hosting :: Extensionless URLs do not find .cshtml/.vbhtml files on IIS 7 or IIS 7.5
By Wayne Plotche, on February 10th, 2012%
Sending email via SMTP in ASP.NET is a really painless experience. However, there are a couple of hoops to jump through if you want to use Google’s GMail SMTP servers. The following example shows a really simple function to get the job done.
The Google support page for configuring a mail client gives us a good starting . . . → Read More: ASP.NET Hosting :: How to Send Email in ASP.NET with GMail SMTP Server
By Wayne Plotche, on February 8th, 2012%
For Any ASP.NET application, monitoring performance is an important job. Performance Monitor tool having some nice features that helps us to monitor ASP.NET Application performance in a better way.In this Tips I discuss four important counter sets that are very useful in monitoring ASP.NET performance.
These are highlighted below
Steps:
1. Open the Perfmon [ Start > Run > . . . → Read More: ASP.NET 4 Hosting :: Monitor ASP.NET Performance Using Perfmon Tool
By C Miller, on February 3rd, 2012%
What is it?
Web host providers in Europe can offer all the amenities that any host in an industrialized country can offer. Web site customers can find budget, dedicated, shared, reseller, and shared hosting. Applications include all the latest languages, frameworks, and capabilities that a consumer could find at a Web host in the U.S. Domain name . . . → Read More: Cheap Europe Web Hosting Provider
By Stephen Jackson, on February 3rd, 2012%
HostForLIFE.eu was established to cater to an under served market in the hosting industry; web hosting for customers who want excellent service. HostForLIFE.eu – a cheap, constant uptime, excellent customer service, quality, and also reliable hosting provider in advanced Windows and ASP.NET technology. We proudly announces the availability of the Silverlight 5 hosting in our entire . . . → Read More: Press Release – Premier European HostForLIFE.eu Launches Silverlight 5 Hosting
By Stephen Jackson, on February 2nd, 2012%
This is the steps you need to follow:
1. First of all we created a table in LightSwitch application.
2. Run the application.
3. Double click one customer and write an email without domain (which shows an error.) likes below image.
4. Change the length of state (no error)->cut->ok.
5. Come back to the customer page like below image.
6. Now go . . . → Read More: Visual Studio LightSwitch Hosting :: Format Data on a Screen in a LightSwitch Application
By Wayne Plotche, on January 31st, 2012%
I write this article based on the question on stackoverflow, MVC3 HtmlHelpers using Generics and LINQ.
I decided to see if I could create an HTML Helper that takes a collection of model objects and renders a table. I spent some time looking at how Telerik implements their GridBuilder using Telerik JustDecompile (Telerik’s FREE decompiler) and got . . . → Read More: ASP.NET MVC 3 Hosting :: Creating a Custom HTML Helper to Render List of Models as a Table
By Wayne Plotche, on January 17th, 2012%
Vertical and Scenario-Focused Tooling
I personally think having a variety of tools is good, especially if they can focus on different verticals, and are optimized for different scenarios/tasks. There is a saying – use the right tool for the job. And the reality is there is a wide spectrum of developers and correspondingly a breadth of requirements . . . → Read More: WebMatrix Hosting :: Explore Experience wih WebMatrix
By Stephen Jackson, on January 16th, 2012%
I’ve recently ran into a bit of trouble with maintaining the aspnet session state across a subdomains of the same application. The main problem was that the ASPNET SessionID cookie by default points to the full web address, meaning that when you navigate to a subdomain, aspnet creates a new SessionID cookie for that subdomain and . . . → Read More: ASP.NET Hosting :: ASP.NET Session State, Cookies and Subdomains