At BUILD Keynote, Scott Guthrie announced the availability of ASP.NET MVC 4 Developer preview. Here are the quick details of ASP.NET MVC 4.0.
Month: September 2011
Visual Studio 11, .NET 4.5 Developer Preview and ASP.NET 4.5
At BUILD Keynote, Microsoft announced Visual Studio 11 Developer Preview and .NET 4.5 Framework. Here are some good resources to start.
3 New Tips to Increase Your Alexa Rank
Last week, I updated the blog design and noticed the changes in Alexa rank. I have performed different experiments and here are some tips to increase alexa rank.
Fixed Sidebar during Scrolling between Header & Footer using jQuery
It explains How to create a sidebar or section that follows you as you scroll down the page. It is very useful to show special or important content to user.
5 things I learned from Facebook design
I am working to redesign TechBrij theme and taking idea from different sites. Here are some points which I learned from Facebook design.
Naming Conventions & Coding Standards for .NET Web Developers
Naming conventions in programming languages have potential benefits to reduce the effort needed to read and understand source code and provide better understanding in case of code reuse after a long interval of time. It’s a initial step for beginner to learn any programming language and It later becomes a habit. Here are some good resources for .NET web developers.
Set Breakpoint and Debug jsFiddle’s Javascript using Firebug
jsFiddle is an online editor for developing code snippets build from HTML, CSS and JavaScript and sharing with others. It provides functionality to embed on a blog. Using this approach, JavaScript developers can very easily isolate bugs. It supports inbuilt popular javascript frameworks like jquery, mootools…etc.
Copy/Extract HTML Dropdownlist Options in Plain Text
You want to copy HTML dropdownlist(combobox) options from a web-page. You do right click on dropdown list. Oh my God !!! There is no option to do it. This article explains how to extract dropdownlist options using Notepad++.
Client Side Validation using ASP.NET Validator Controls from Javascript
ASP.NET validation controls provide functionality to perform validation using client script. By default, when client-side validation is being performed, the user cannot post the page to the server if there are errors on the page thus the user experience with the page is enhanced.
Redirect to Stream as File Attachment to Download in ASP.NET
Generally we need to convert stream as file attachment in asp.net to provide export functionality. The main objective is to convert stream as file attachment without creating any file on server side. So I created a common method which takes stream as input and gives as file attachment in response.