http://kazimanzurrashid.myopenid.com/
Name: http://kazimanzurrashid.myopenid.com/
Score:
Last Seen: 450 days, 14 hours, 19 minutes ago
Member Since: 19 November, 2008
DotNetShoutout
atom rss
2
Shouts

10 Things ASP.NET Developers Should Know About Web.config Inheritance and Overrides - Jon Galloway

published 487 days, 1 hour, 9 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 489 days, 20 hours, 3 minutes ago
Saturday, January 21, 2012 4:46:53 PM GMT Wednesday, January 18, 2012 9:53:29 PM GMT
10 Things ASP.NET Developers Should Know About Web.config Inheritance and Overrides The ASP.NET configuration system is build around the idea of inheritance: Each Web.config file applies configuration settings to the directory that it is in and to all of the child directories below it. Settings in child directories can optionally override or modify settings that are specified in parent directories. Configuration settings in a Web.config file can optionally be applied to individual files or subdirectori... (more)
category: Web Dev | clicked: 23 | comment | | source: weblogs.asp.net
3
Shouts

VS 2010 SP1 and SQL CE - ScottGu's Blog

published 859 days, 5 hours, 32 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 861 days, 10 hours, 8 minutes ago
Friday, January 14, 2011 12:24:32 PM GMT Wednesday, January 12, 2011 7:47:48 AM GMT
Last month we released the Beta of VS 2010 Service Pack 1 (SP1).  You can learn more about the VS 2010 SP1 Beta from Jason Zander’s twoblog posts about it, and from Scott Hanselman’s blog post that covers some of the new capabilities enabled with it.   You can download and install the VS 2010 SP1 Beta here. Last week I blogged about the new Visual Studio support for IIS Express that we are adding with VS 2010 SP1. In today’s post I’m going to talk about the new VS 2010 SP1 tooling support for SQL CE, an... (more)
category: Architecture | clicked: 2 | comment | | source: weblogs.asp.net
tags: SQLCE, SQL, VS2010, ASP.NET
8
Shouts

ASP.NET MVC3 Razor Script Loading Tips

published 877 days, 5 hours, 49 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 881 days, 19 hours, 51 minutes ago
Monday, December 27, 2010 12:07:02 PM GMT Wednesday, December 22, 2010 10:04:53 PM GMT
Lately, I have been playing with few JavaScript frameworks and in today’s modern web applications it is very common that we are including tons of JavaScript files in our application. One of the thing that plays important role in application performance is how fast these script files are delivered into the browsers. I have extensively blogged on ... (more)
category: Web Dev | clicked: 4 | 2 comments | | source: kazimanzurrashid.com
tags: ASPNETMVC, ASP .NET MVC, MVC, ASP.NET
3
Shouts

Announcing ASP.NET MVC 3 (Release Candidate 2) - ScottGu's Blog

published 890 days, 15 hours, 58 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 892 days, 23 hours, 55 minutes ago
Tuesday, December 14, 2010 1:58:42 AM GMT Saturday, December 11, 2010 6:01:42 PM GMT
Earlier today the ASP.NET team shipped the final release candidate (RC2) for ASP.NET MVC 3.  You can download and install it here.Almost there… Today’s RC2 release is the near-final release of ASP.NET MVC 3, and is a true “release candidate” in that we are hoping to not make any more code changes with it.  We are publishing it today so that people can do final testing with it, let us know if they find any last minute “showstoppers”, and start updating their apps to use it.  We will officially ship the f... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, MVC, ASP.NET
5
Shouts

Class-Level Model Validation with EF Code First and ASP.NET MVC 3 - ScottGu's Blog

published 890 days, 15 hours, 58 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 892 days, 23 hours, 55 minutes ago
Tuesday, December 14, 2010 1:58:42 AM GMT Saturday, December 11, 2010 6:00:48 PM GMT
Earlier this week the data team released the CTP5 build of the new Entity Framework Code-First library.  In my blog post a few days ago I talked about a few of the improvements introduced with the new CTP5 build.  Automatic support for enforcing DataAnnotation validation attributes on models was one of the improvements I discussed.  It provides a pretty easy way to enable property-level validation logic within your model layer. You can apply validation attributes like [Required], [Range], and [Regular... (more)
category: Architecture | clicked: 1 | comment | | source: weblogs.asp.net
tags: EF, Entity Framework, Code first, Entity Framework 4
6
Shouts

Announcing Entity Framework Code-First (CTP5 release) - ScottGu's Blog

published 893 days, 1 hour, 8 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 896 days, 4 hours, 52 minutes ago
Saturday, December 11, 2010 4:47:49 PM GMT Wednesday, December 08, 2010 1:04:29 PM GMT
This week the data team released the CTP5 build of the new Entity Framework Code-First library.  EF Code-First enables a pretty sweet code-centric development workflow for working with data.  It enables you to:Develop without ever having to open a designer or define an XML mapping file Define model objects by simply writing “plain old classes” with no base classes required Use a “convention over configuration” approach that enables database persistence without explicitly configuring anything Optionally o... (more)
category: How To | clicked: 1 | comment | | source: weblogs.asp.net
tags: Code first, entity framework 4.0
9
Shouts

ASP.NET MVC Theme Supported Razor View Engine

published 898 days, 11 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 900 days, 21 hours, 17 minutes ago
Monday, December 06, 2010 5:45:28 PM GMT Friday, December 03, 2010 8:39:14 PM GMT
Recently, I was trying to add theme support in one of my pet project. There are already few articles available in ASP.NET MVC ViewEngine theming  which you will find by Google/Bing, but those are not best fitted in my case. One of the goal in theming I wanted to implement is to add fallback support, which means if a theme does not have th... (more)
category: Web Dev | clicked: 39 | 2 comments | | source: kazimanzurrashid.com
tags: ASPNETMVC, ASP .NET MVC, Razor, MVC
3
Shouts

The missing Html5 template of ASP.NET MVC3 - Kazi Manzur Rashid

published 908 days, 15 hours, 27 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 909 days, 20 hours, 43 minutes ago
Friday, November 26, 2010 2:29:08 AM GMT Wednesday, November 24, 2010 9:13:23 PM GMT
In my last post, I mentioned that the default template that comes with the ASP.NET MVC would not renders properly if you use any of the new Html5 elements like article, section, header etc etc, before moving forward let me show you a brief example, lets say you are using the following markup in your view: (more)
category: Web Dev | clicked: 1 | comment | | source: kazimanzurrashid.com
tags: ASPNETMVC, ASP .NET, ASP .NET MVC, html5
5
Shouts

Integrate Html5 Form in ASP.NET MVC (part 2) - Kazi Manzur Rashid

published 905 days, 11 hours, 11 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 909 days, 20 hours, 45 minutes ago
Monday, November 29, 2010 6:45:16 AM GMT Wednesday, November 24, 2010 9:11:40 PM GMT
I usually do not write multiple post in the same day, but as I was having some conversation with a folk in ASP.NET mailing list on Html5 specially on client side validation support in ASP.NET MVC3,  I decided to post the second part of the Html5 form Integration which I initially started in my old blog. In the previous post, I have shown you how you can emit standard HTML5 attributes from the ModelMetadata, I know the code is not what you lik... (more)
category: Web Dev | clicked: 0 | comment | | source: kazimanzurrashid.com
tags: ASP .NET MVC, MVC, html5
3
Shouts

Nerd Dinner Html5, CSS3 Media Query for Mobile Phone and my response to Hanselman - Kazi Manzur Rashid

published 908 days, 15 hours, 27 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 909 days, 20 hours, 46 minutes ago
Friday, November 26, 2010 2:29:08 AM GMT Wednesday, November 24, 2010 9:10:29 PM GMT
Recently, Scott Hanselman made a post on Mobile View Engine for ASP.NET MVC where I left a comment that you can do this with css media query without using any server side sniffing, in the reply Scott wants to see an example in the context of Nerd Dinner, so here you go. To show the Css3 media query in action,  I only have to convert the home page, the same can be applied for the rest of the pages and as a... (more)
category: How To | clicked: 0 | comment | | source: kazimanzurrashid.com
tags: iPhone, css3, Webkit, html5
3
Shouts

Mother of All Syntax Highlighters for Windows Live Writer - Kazi Manzur Rashid

published 908 days, 15 hours, 27 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 909 days, 20 hours, 47 minutes ago
Friday, November 26, 2010 2:29:08 AM GMT Wednesday, November 24, 2010 9:08:54 PM GMT
Okay as now my blog is rolling, the next thing I wanted pick is a perfect syntax highlighter for Live Writer. In my old my blog, I was using http://wlwsyntaxhighlighter.codeplex.com/ pretty successfully, but looks like it has not been updated for quite some time and more importantly it was not generating the correct markup that I want to post in this blog. Beside that I would also like to see what are the other alternates of Synt... (more)
category: How To | clicked: 0 | comment | | source: kazimanzurrashid.com
tags: Plugin, Live Writer