To highlight a particular item in a DropDownList

//The following function describes the code to highlight a particular item in a DropDownList. Here i have assumed that that the

DropDownList name is dlSelectedAction

private void HighLight()

{

foreach (ListItem item in dlSelectAction.Items)

{

if (item.Value.Equals(“the index of the item”))

{

item.Attributes.Add(“class”, “categoryItemStyle”);

//Here you need to create a class in your stylesheet (.css file) that has the name “categoryItemStyle” as shown below.

In that class you can specify the background color of your choice using background-color property.

You can use another class name too.

}

}

}

.categoryItemStyle
{
background-color: red;
}

To get records between current date and adding 15 days in current date by stored procedure

//Here i am giving an example of getting the records of users whose birthdays are between current date and adding 15 days in the current date. I am assuming that the field that contains the birthdate is Bdate. You can give your fieldname insted of it.

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

ALTER PROCEDURE [dbo].[Get_UpcomingBirthdays]

AS
BEGIN
select  your fields,(convert (varchar,(select DateName(month,dateadd(month,month(Bdate),0)-1)),103)+’, ‘+ convert (varchar,day(Bdate),103))
as date,
from TableName

where month(Bdate)=month(getdate())
and day(Bdate)between Day(getdate())
and day(dateadd(day,15,getdate()))

To save an image to a specified path with a randomly generated name

//Here i am assuming that the folder in which you want to store images is “UserPhotos” and  File Uploader control name is    UploadPhoto

string Path = Server.MapPath(“UserPhotos”);

Random r = new Random();

string FileName = r.Next().ToString();

string FileExtention = UploadPhoto.FileName.Substring(UploadPhoto.FileName.LastIndexOf(‘.’));
FileName = FileName + FileExtention;
string FilePath = Path + @”\” + FileName;
UploadPhoto.SaveAs(FilePath);
imgPhoto.ImageUrl = FilePath;

Follow

Get every new post delivered to your Inbox.