March 12, 2010
Sometimes we need to filter the gridview data based on some range value. On that case we can use AJAX Slider control to provide scrollable Filter functionality with gridview control. Data source for the Gridview can be anything like XML or Database.
You can read the complete article and Implementation and download the sample application from DotNetFunda.Com
I will also write one article on AJAX MulipleSlider to filter the data based on minimumn and maximum value.
Please share your valuable feedback and suggestion.
Leave a Comment » |
.NET 4.0, ASP.NET, General |
Permalink
Posted by Abhijit Jana
March 1, 2010
ASP.NET 4.0, came up with two new properties inside Page Class, those are MetaDescription and MetaKeyWord. This has been introduce because of make web application Search Engine Friendly. Search Engine looks for Meta tag of our web page to get the details of page contents. In ASP.NET 4.0, we can add these two properties with Page class in Code behind or in Page Directives.
If you want to find out the definition of these two properties, Right Click on Page Class and Click on Goto Definition. This will show you the Meta data information of Page Class as shown in below picture

If we set MetaDescription and MetaKeywords either from Code behind or using Page Directive in aspx page, both will be render as “meta” tag in html code.
The main objective of MetaKeywords and MetaDescription proerties to make your web application SEO friendly. In ASP.NET 2.0, HtmlMeta used to do the same, but in ASP.NET 4.0 make these thing very simple as we can easily add using Page Class.
You can find the Complete Article over, DotNetFunda.com
It has alreday been shared with
www.dotnetkicks.com
dotnetshoutout.com
delicious.com
digg.com
You can also follow me @ http://twitter.com/AbhijitJana
Leave a Comment » |
.NET 4.0, ASP.NET, General, Visual Studio 2010 |
Permalink
Posted by Abhijit Jana
February 7, 2010
Recently I have developed one VS 2010 Extension called ZoomSliderVSX. ZoomSliderVSX is an add-on functionality to zoom your source code inside VS 2010 Editor. Though VS 2010 having inbuilt Zoom Level dropdown list to change the ZoomLevel value, but I didn’t find anything like Scrollable zoom features which is one of the most common features for any MS products. So here is ZoomSlider VS2010 Extension which will give the scrollable zoom functionality very easily.

I have published the addins in MSDN Site. You can download it from MSDN Visual Studio Gallery
I will publish one complete article with source code @Codeproject Very Soon.
Please provide me your suggestion and feedback for improvement.
Regards,
Abhijit
2 Comments |
.NET 4.0, VSX, Visual Studio 2010 |
Permalink
Posted by Abhijit Jana
January 10, 2010
Enterprise Library caching application Block provides ready to use Caching Framework. This can be used in various application like
* ASP.NET Web application
* Windows Forms
* Console
* Windows Service
* Enterprise Services
* Web service
Implementing caching using Caching Application Block improve the performance of application as well as reduces the development time and cost. This Application blocks provides all kinds of function like adding, removing, managing expiration of cache.
As caching application block is predefined set of code and that are defined in a framework for that we need install Enterprise Library 4.1 First then we need to add some reference in to our application. These are Microsoft.Practices.EnterpriseLibrary.Caching.dll and Microsoft.Practices.EnterpriseLibrary.common.dll.
I have published one complete article on Codeproject.com which describe how to use Enterprise Caching Application Block 4.1 . Here is my complete article
Exploring Caching : Using Caching Application Enterprise Library 4.1
Please provide your valuable suggestion and feedback to improve my articles.
Thank you !
Leave a Comment » |
.NET 4.0, ASP.NET, C#, Enterprise Library 4.1, Visual Studio 2010 |
Permalink
Posted by Abhijit Jana