nandip
Name: nandip
Score: 395.04
Last Seen: 63 days, 16 hours, 35 minutes ago
Member Since: 3 March, 2010
DotNetShoutout
atom rss
15
Shouts

ASP.NET 4.5 Model Binding: Creating Custom Value Provider | dotnetExpertGuide.com

published 55 days, 10 hours, 22 minutes ago posted by nandipnandip 63 days, 16 hours, 35 minutes ago
Thursday, March 28, 2013 11:19:52 AM GMT Wednesday, March 20, 2013 5:07:17 AM GMT
With ASP.NET 4.5, ASP.NET introduced model binding for web forms as well. Model binding helps to simplify code focused data access logic within web forms. Here in this post, we will see how we can create our own custom value provider (read my post on how I used value provider for encrypted query string in MVC application). We will also examine inbuilt class of ASP.NET 4.5 model binding framework which can be useful in creating custom value provider more easily with focused approach... (more)
category: How To | clicked: 37 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

[Picture] ASP.NET MVC: Action Filter Life Cycle | dotnetExpertGuide.com

published 63 days, 8 hours, 53 minutes ago posted by nandipnandip 73 days, 2 hours, 3 minutes ago
Wednesday, March 20, 2013 12:48:42 PM GMT Sunday, March 10, 2013 7:39:04 PM GMT
Picture post on ASP.NET MVC action filter life cycle. (more)
category: Architecture | clicked: 51 | comment | | source: www.dotnetexpertguide.com
tags:
3
Shouts

ASP.NET MVC: Auto upgrade MVC 3 to MVC 4 application | dotnetExpertGuide.com

published 96 days, 12 hours, 33 minutes ago posted by nandipnandip 105 days, 21 hours, 26 minutes ago
Friday, February 15, 2013 9:08:21 AM GMT Wednesday, February 06, 2013 12:15:38 AM GMT
Yeah you read it right... Its NuGet package to auto upgrade existing ASP.NET MVC 3 application to ASP.NET MVC 4 application. Along with auto upgradtion I have also included MVC 4 FixedDisplayModes, Web Optimization Framework, DotNetOpenAuth packages for enabling oAuth login after upgrade. It will also add AuthConfig.cs & BundleConfig.cs in App_Start directory. To enable oAuth & Bundling... (more)
category: How To | clicked: 26 | comment | | source: www.dotnetexpertguide.com
tags:
5
Shouts

ASP.NET MVC: Order of view selection | dotnetExpertGuide.com

published 111 days, 4 hours, 19 minutes ago posted by nandipnandip 117 days, 20 hours, 41 minutes ago
Thursday, January 31, 2013 5:23:10 PM GMT Friday, January 25, 2013 1:00:41 AM GMT
Few days ago, I and one of my friends were discussing basic of ASP.NET MVC. After some discussion we came on point in which order views are selected. Because there can be more than one view with same name. For e.g. we can have index.aspx, index.ascx, index.cshtml, index.vbhtml and all this can be in controller specific folder as well shared folder. So in which order view is getting selected? Which view has higher priority? (more)
category: How To | clicked: 18 | comment | | source: www.dotnetexpertguide.com
tags:
2
Shouts

ASP.NET MVC Value Provider for encrypted query string | dotnetExpertGuide.com

published 132 days, 12 hours, 17 minutes ago posted by nandipnandip 138 days, 20 hours, 59 minutes ago
Thursday, January 10, 2013 9:24:58 AM GMT Friday, January 04, 2013 12:42:39 AM GMT
By looking at the post title, it is quite clear that we are about to discuss, query string encryption in ASP.NET MVC application. But I am more interested in demonstrating extensibility of ASP.NET MVC framework and how we can leverage it by plugging our custom logic into ASP.NET MVC life cycle... (more)
category: How To | clicked: 17 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

ASP.NET MVC: Accessing base controller from view | dotnetExpertGuide.com

posted by nandipnandip 149 days, 16 hours, 8 minutes ago
Monday, December 24, 2012 5:33:53 AM GMT
Today, I was examining one ASP.NET MVC application for code optimization. And at the same time as a part of code rearrangement, I required to access base controller instance from view. So here in this post we will see how we can access base controller instance from within view. Before looking at actual implementation, let me describe how all controller were arranged... (more)
category: How To | clicked: 23 | comment | | source: www.dotnetexpertguide.com
tags:
15
Shouts

ASP.NET & IIS: Domain/URL redirection best practice | dotnetExpertGuide.com

published 152 days, 11 hours, 36 minutes ago posted by nandipnandip 161 days, 18 hours, 30 minutes ago
Friday, December 21, 2012 10:06:11 AM GMT Wednesday, December 12, 2012 3:12:17 AM GMT
In web application, many times we are redirecting domain to other (sub)domain or one url to another url within same domain. So here in this post we will discuss what are the best practices for domain redirection with respect to ASP.NET & IIS and what is the performance impact of it... (more)
category: How To | clicked: 158 | comment | | source: www.dotnetexpertguide.com
tags:
6
Shouts

ASP.NET web optimization framework with MVC 3 & ASP.NET 4.0 web form | dotnetExpertGuide.com

published 168 days, 9 hours, 31 minutes ago posted by nandipnandip 177 days, 3 hours, 13 minutes ago
Wednesday, December 05, 2012 12:10:42 PM GMT Monday, November 26, 2012 6:28:46 PM GMT
Web optimization framework was introduced with MVC 4 and it is included in default MVC 4 template. But we can use it with MVC 3 and ASP.NET 4.0 web form application as well. This is because web optimization framework is built on top of framework 4.0. So here are the steps to use web optimization framework with ASP.NET 4.0 application... (more)
category: How To | clicked: 27 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

ASP.NET MVC Bundling: Auto sync JavaScript model with MVC model | dotnetExpertGuide.com

published 176 days, 11 hours, 47 minutes ago posted by nandipnandip 186 days, 2 hours, 23 minutes ago
Tuesday, November 27, 2012 9:55:17 AM GMT Saturday, November 17, 2012 7:18:53 PM GMT
Recently in one application, I have to create one JavaScript object which represents C# enum in client side. Later on C# enum keep extending and at the same time I used to add entry in JavaScript object too. Everything was fine but sometime me or team member forget to sync JavaScript object with C# enum when adding or removing existing entry in C# enum and JavaScript starts breaking and further more each time syncing JavaScript object with C# enum was also tedious task specially when team member is new a... (more)
category: How To | clicked: 34 | comment | | source: www.dotnetexpertguide.com
tags:
6
Shouts

ASP.NET 4.5 & MVC 4 Bundling: Next Approach | dotnetExpertGuide.com

published 180 days, 9 hours, 21 minutes ago posted by nandipnandip 188 days, 13 hours, 32 minutes ago
Friday, November 23, 2012 12:20:35 PM GMT Thursday, November 15, 2012 8:09:58 AM GMT
In the earlier post, we have seen how we can access bundle context while processing bundle through custom transform. Taking it further, in this post we will see how we can utilize bundle context to pass extra parameters to transform and later how we can utilize those parameters to transform bundle... (more)
category: How To | clicked: 44 | comment | | source: www.dotnetexpertguide.com
tags:
3
Shouts

ASP.NET 4.5 & MVC 4: Revisiting IBundleTransform | dotnetExpertGuide.com

published 202 days, 11 hours, 29 minutes ago posted by nandipnandip 212 days, 6 hours, 57 minutes ago
Thursday, November 01, 2012 10:12:29 AM GMT Monday, October 22, 2012 2:44:48 PM GMT
Earlier almost year ago, when MVC 4 developer preview version released at that time I have blogged on how to create custom transform type for bundling in ASP.NET 4.5 & MVC 4. There are some changes in System.Web.Optimization since developer preview release to RC. As far as this post concerns, I am more interested in changes in IBundleTransform interface so I am rewriting old post which include changes in IBundleTransform... (more)
category: How To | clicked: 31 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

ASP.NET, MVC 4: Cookieless domain for bundling and static resources | dotnetExpertGuide.com

published 215 days, 9 hours, 34 minutes ago posted by nandipnandip 219 days, 15 hours, 57 minutes ago
Friday, October 19, 2012 12:08:11 PM GMT Monday, October 15, 2012 5:44:44 AM GMT
Last week, one reader of this blog asked, how to setup cookieless domain to serve bundle response and other static resources in ASP.NET application. Yes it is very much necessary and one of the web performance guideline that static resource should be served from cookieless domain for better performance. So here in this post we will see how to setup ASP.NET application and IIS for cookieless domain with minimal code changes and deployment task... (more)
category: How To | clicked: 33 | comment | | source: www.dotnetexpertguide.com
tags:
5
Shouts

ASP.NET: Register HttpModule at runtime | dotnetExpertGuide.com

published 215 days, 9 hours, 34 minutes ago posted by nandipnandip 220 days, 4 hours, 44 minutes ago
Friday, October 19, 2012 12:08:11 PM GMT Sunday, October 14, 2012 4:57:47 PM GMT
In this post we will see how to leverage PreApplicationStartMethod to register HTTP module dynamically at runtime. You can read more on PreApplicationStartMethod in this post here. (more)
category: How To | clicked: 11 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

ASP.NET: PreApplicationStartMethod example | dotnetExpertGuide.com

published 215 days, 9 hours, 34 minutes ago posted by nandipnandip 222 days, 4 hours, 3 minutes ago
Friday, October 19, 2012 12:08:11 PM GMT Friday, October 12, 2012 5:38:48 PM GMT
Few days back when I was exploring how ASP.NET 4.5 and MVC 4 bundling are implemented specially how bundle url are resolved at runtime. At that time I found that PreApplicationStartMethod is used to hookup bundle url. PreApplicationStartMethod is used to configure ASP.NET application at runtime. PreApplicationStartMethod is fired in early stage of application startup and hence it is executed before Application_Start event so we can’t... (more)
category: How To | clicked: 15 | comment | | source: www.dotnetexpertguide.com
tags:
5
Shouts

Return PartialView from ASP.NET MVC controller | dotnetExpertGuide.com

published 224 days, 10 hours, 58 minutes ago posted by nandipnandip 234 days, 1 hour, 33 minutes ago
Wednesday, October 10, 2012 10:44:04 AM GMT Sunday, September 30, 2012 8:09:15 PM GMT
return PartialView()… yeah as it suggests it will return partial view but I think many developer does not know about PartialViewResult or have never used it. So let’s have quick discussion on it. Let start with scratch, as we know @Html.Partial is used to inject partial view markup inside another view and while using @Html.Partial, it will not render layout view simply it will render content of partial view without applying layout view. It is very much necessary because the partial view content will be r... (more)
category: How To | clicked: 42 | comment | | source: www.dotnetexpertguide.com
tags:
4
Shouts

ASP.NET 4.5, MVC 4: Customize oAuth Login UI | dotnetExpertGuide.com

published 252 days, 11 hours, 55 minutes ago posted by nandipnandip 261 days, 7 hours, 1 minute ago
Wednesday, September 12, 2012 9:46:40 AM GMT Monday, September 03, 2012 2:41:12 PM GMT
In this quick post, we will see how to customize, oAuth Login UI in ASP.NET 4.5 and MVC 4. For more detail on setting up facebook & twitter login with MVC 4, you can refer my previous post. One of the common requirements with oAuth login is that displaying respective provider’s logo or image. (more)
category: How To | clicked: 21 | comment | | source: www.dotnetexpertguide.com
tags:
3
Shouts

MVC 4: facebook twitter login with oAuth | dotnetExpertGuide.com

published 268 days, 6 hours, 12 minutes ago posted by nandipnandip 274 days, 7 hours, 12 minutes ago
Monday, August 27, 2012 3:29:33 PM GMT Tuesday, August 21, 2012 2:29:44 PM GMT
ASP.NET MVC 4 uses DotNetOpenAuth library for OAuth and OpenID authentication. In this post we will see how we can configure MVC 4 application to use facebook and twitter. Apart from configuring MVC 4 application we will also take a quick glance at how to configure facebook and twitter application to obtain appId / consumerKey etc. (more)
category: How To | clicked: 28 | comment | | source: www.dotnetexpertguide.com
tags:
5
Shouts

Cascading drop down with knockoutjs and ASP.NET MVC | dotnetExpertGuide.com

published 320 days, 5 hours, 46 minutes ago posted by nandipnandip 330 days, 4 hours, 10 minutes ago
Friday, July 06, 2012 3:55:19 PM GMT Tuesday, June 26, 2012 5:31:35 PM GMT
In this basic post, we will see how to build cascading drop down with the help of knockoutjs and ASP.NET MVC. However building cascading drop down with ASP.NET MVC is not a big deal and if we google it out, we will find plenty of solutions and post which demonstrate this. But here idea is to show how we can leverage knockoutjs to create UI which update itself (obviously based on some user interaction) without writing JavaScript which build UI or DOM element each and every time. Later on we can use same t... (more)
category: Web Dev | clicked: 43 | comment | | source: www.dotnetexpertguide.com
tags:
2
Shouts

ASP.NET + IIS + DNS Records = Sub Domain on the fly | dotnetExpertGuide.com

posted by nandipnandip 412 days, 22 hours, 46 minutes ago
Wednesday, April 04, 2012 10:56:00 PM GMT
Whenever any web portal provide hosted service, at that time publishing it through sub domain is the most convenient and preferable way. There are many such free hosted services are available on the internet. For e.g. blogger.com and wordpress.com for blog services. If you have noticed, in such portal, whenever user register for a service at that time it ask for a preferable sub domain, and upon choosing sub domain, service start instantly without waiting for DNS propagation compared to normal sub domain... (more)
category: Web Dev | clicked: 5 | comment | | source: www.dotnetexpertguide.com
tags:
2
Shouts

ASP.NET MVC 4 Beta Overview | dotnetExpertGuide.com

published 450 days, 11 hours, 54 minutes ago posted by nandipnandip 459 days, 6 hours, 51 minutes ago
Monday, February 27, 2012 9:47:43 AM GMT Saturday, February 18, 2012 2:50:27 PM GMT
This post is part of ASP .NET MVC 4 Article Series. Yesterday Microsoft announced ASP.NET MVC 4 Beta released on the road to ASP.NET MVC 4. Beta release included some great new feature in addition to ASP.NET MVC 4 developer preview. Here we will take quick overview of whats new included in ASP.NET MVC 4 Beta release. Software Requirements and Installation The ASP.NET MVC 4 beta requires PowerShell 2.0 and Visual Studio 2010 with SP 1 or Visual Web Developer Express 2010 with SP 1. Before installing ... (more)
category: Web Dev | clicked: 44 | comment | | source: www.dotnetexpertguide.com
tags: ASP.NET MVC, ASP.NET MVC 4
Previous 1 2 3 Next