Wednesday, June 6, 2007

Using custom collections with the ASP.NET DataGrid control

Most of the developer use data controls for retrieving data and binding it to the data grid.
But collections in .net technology provide great alternative instead of using data reader,data set or data view to bind data grid.

I have found a great msdn article that describes all thing that you can do with data grid and collections.

i.e. User Interface
Database Structure and collection
Concepts behind the strongly typed collections.
Creating the basic collection objects
Populating the collection with data from the DAL
Binding the Data Grid control to the custom collection
Caching collections
Creating a class to filter collections
Creating a class to sort collections
Bringing it all together: filtering and sorting collections

here is the link for that article:
http://www.microsoft.com/belux/msdn/nl/community/columns/ceulemans/custcollections.mspx
Share:

Search Engine Optimization and ASP.NET

I have found a great articles to do Search engine optimization for ASP.NET websites.

it will discuss regarding view state and meta tags of asp.net .

If you're developing for the Web then you should familiarize yourself with some Search Engine Optimization or SEO concepts. The idea here is to make your ASP.NET application as friendly as possible for spiders, and the specific spider we're talking about is Google.

Here is the link for that :
http://www.wwwcoder.com/tabid/68/type/art/parentid/457/site/6173/default.aspx
Share:

Mouse Hover effect on asp.net datagrid.

Here is the code for mouse hover effect in ASP.NET using C#.

I have written a another code for mouse hover effect in asp.net data gird. You can do both for alternating item and item rows.

First You have to create a item created event of datagrid and paste the following...


private void datagrid_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if (e.Item.ItemType==ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'lightblue';");
e.Item.Attributes.Add("OnMouseOut", "this.style.backgroundColor = '#E5F2FA';");
}
else if(e.Item.ItemType==ListItemType.Item)
{
e.Item.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'lightblue';");
e.Item.Attributes.Add("OnMouseOut", "this.style.backgroundColor = 'white';");
}
}
Share:

Great ASP.NET Datagrid Search Articles.

I have found some great ASP.NET Data grid articles. Please go through it.

1) Drill down Data grid Searching with ASP.NET:

This articles provide all the information to develop basic search in asp.net datagrid.

here is the link:http://www.sitepoint.com/article/datagrid-searching-asp-net

2) Highlighting Multiple Searching Keywords for ASP.NET Datagrid.

This article describes how to highlight searching keyword in asp.net datagrid with the help of
.css files
Share:

ASP.NET Free WebHosting

Hurray, I have found a great free web hosting with ASP.NET 2.0 support. Brinkster People provide free ASP.NET hosting following supports.



  • Package Features.
    30 mb web space
    500 MB WEB TRAFFIC (limited to 16.7 mb web traffic per day)
    1 brinkster.net e-mail account with 10 mb space
    24/7/365 E-MAIL SUPPORT
    Brinkster control panel

  • Supported Technologies.

    ASP 3.0
    ASP.NET
    xml 4.0
    wap enabled
    flash enabled
    ssi - server side includes
    MDAC 2.8
    MS ACCESS
    .NET MOBILE INTERNET TOOLKIT
    ONLINE FILE MANAGER

For more Details please visit :http://www.brinkster.com/hosting/FreeDeveloper.aspx

Share:
Tuesday, May 22, 2007

HOW TO FACE AND PREPARE FOR INTERVIEWS - MUST FOR ALL

Today Every body has to face interview to get jobs. Lots of people are preparing for it. But Still there are some points that every candidate has to take care of it. I have found a great article for an interview. Which covers all the topics from right from beginning to written and aptitude test,technical interview, hr interview etc.

The Author shared his experience with the big company's.

following is the link of that article..
http://www.sureshkumar.net/html/full_articles_display.asp?page=1&Article_Id=HOW%20TO%20FACE%20and%20PREPARE%20FOR%20INTERVIEWS%20-%20MUST%20FOR%20ALL&main_id=2&cat_id=1&sub_id=
Share:
Monday, May 21, 2007

http://internetexplorer8.net-Your guide to Microsoft's next browser

Microsoft has launched a new website called http://internetexplorer8.net/
Where you can find all things about Microsoft forthcoming new browser Microsoft Internet explorer 8.

You can also get information about Microsoft current browser Internet explorer 7.0.
Share:

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews