Official Google Webmaster Central Blog

Friday, February 22, 2008

Image Container : Asp.Net

// Image Container Class //

//CSS Class //

.rbtopleftcurvegd { background: url(images/whiteimg-bg-left-curve.gif) no-repeat top left; }
.rdleftbordergd {border-left:1px solid #B9B9B9;line-height:5px; height:5px; background-color:White;}
.rdrightbordergd {border-right:1px solid #B9B9B9; border-right-width:1px;width:5px; background-color:White;}
.rdtopbordergd {border-top:#B9B9B9 1px solid;line-height:5px; height:5px; background-color:White;}
.rbtoprightcurvegd { background: url(images/whiteimg-bg-right-curve.gif) no-repeat top right; }
.rbbottomleftcurvegd { background: url(images/whiteimg-bg-bottomleft-curv.gif) no-repeat bottom left; }
.rdbottombordergd {border-bottom:1px solid #B9B9B9; border-bottom-width:1px;line-height:5px; height:5px; background-color:White;}
.rbbottomrightcurvegd { background: url(images/whiteimg-bg-topright-curve.gif) no-repeat bottom right; }
.rdspecinggd { padding: 5px 5px 5px 5px; background-color:White; }
.rbbackcolorgd {background-color:White;}

// End CSS Class //

__________________________________________________________________________________________________________

// Image Container //





//put your image here //

images/events.gif" alt="Events at Ebazr" border="0"/>





// End Image Container //

Note:

//Download following images image here //

// set the path & do not change his name //









Wednesday, February 13, 2008

Date Format - Convert Date Format

1 . Convert Date Format in Asp.Net ( Vb.Net )

Example :

Current date format : 2/22/2008 or 2/22/2008 12:00:00
After converting date format : 22-Feb-2008

Solution :

Dim datformat as String
lblTicketDate.Text = datformat.Format("{0:dd-MMM-yyyy}", dsticketdetail.Tables(0).Rows(0)("dTicketDate"))

2. Convert Date Format in Asp.Net

Example :

Current Date Format : 22-Feb-2008
After converting date format : 2/22/2008

Solution :

Dim dFromOrderDate as String
dFromOrderDate = Convert.ToDateTime(txtFromOrdDate.Text).ToShortDateString()