Wednesday, June 6, 2007

Micorosft Acropolis CTP 1 released.


Microsoft code name “Acropolis” Community Technology Preview 1 is a bundle of components and tools that make life easier for developers to build and manage modular, business focused, client .NET smart applications.

To Download Acropolis click Here


To Know more about acropolis download Introducing video from here

Share:

Windows Presentation Foundation- All About

The primary goal of Windows Presentation Foundation (WPF) is to help developers create attractive and effective user interfaces. Learn how the WPF unified platform helps make designers active participants in creating user interfaces, and provides a common programming model for standalone and browser applications.

It is a great articles which describes all the aspects of WPF and also give glimpse on how user can developed smart application with Windows Presentation Foundation.

Here is the link for article:
http://msdn2.microsoft.com/en-us/library/aa663364.aspx
Share:

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:

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