Click here to Skip to main content
15,899,026 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to Browse Folder Pin
Xmen Real 25-Feb-09 4:53
professional Xmen Real 25-Feb-09 4:53 
QuestionProblem With Datatable Pin
ais0725-Feb-09 0:46
ais0725-Feb-09 0:46 
AnswerRe: Problem With Datatable Pin
N a v a n e e t h25-Feb-09 1:56
N a v a n e e t h25-Feb-09 1:56 
Questionretrieving a sql results with a specific Id using Rank and Partition Pin
gottimukkala25-Feb-09 0:46
gottimukkala25-Feb-09 0:46 
AnswerRe: retrieving a sql results with a specific Id using Rank and Partition Pin
Mark Graham25-Feb-09 1:22
Mark Graham25-Feb-09 1:22 
Answerupdate/delete/edit in gridview-asp.net(2.0) Pin
muana_gunner25-Feb-09 0:36
muana_gunner25-Feb-09 0:36 
QuestionSecurity Pin
ellllllllie24-Feb-09 23:37
ellllllllie24-Feb-09 23:37 
QuestionEvents in a UserControl Pin
Vimalsoft(Pty) Ltd24-Feb-09 23:06
professionalVimalsoft(Pty) Ltd24-Feb-09 23:06 
Good Day All

Am using a Infragistic Ultragrid Control and in the Control there is no event RowDataBound, So i decided to add it. I right Clicked on the Control and went to Properties and clicked at the lightning sign for events and double clicked "DataBound" event and next to it i started coding my event like this


protected void ultraGridCycles_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        //We're only interested in rows that contain data

        //Get a reference to the data used  to databound the row
        DataRowView drv = (DataRowView)e.Row.DataItem;
        if (Convert.ToString(drv["1"]) == "1")
        {
            e.Row.Font.Bold = true;
            e.Row.ForeColor = System.Drawing.Color.Gold;
        }
    }

}


The Compiler did not complain. Now i want to use this event in the like in MS Gridview. How do i get that event to be Fired ?


Thank you

Vuyiswa Maseko,

Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.tiyaneProperties.co.za
vuyiswa@its.co.za
www.ITS.co.za

AnswerRe: Events in a UserControl Pin
N a v a n e e t h25-Feb-09 3:01
N a v a n e e t h25-Feb-09 3:01 
GeneralRe: Events in a UserControl Pin
Vimalsoft(Pty) Ltd25-Feb-09 3:07
professionalVimalsoft(Pty) Ltd25-Feb-09 3:07 
Questionabout asp dot net? Pin
che_kar24-Feb-09 23:04
che_kar24-Feb-09 23:04 
AnswerRe: about asp dot net? Pin
kumareshTMC24-Feb-09 23:26
kumareshTMC24-Feb-09 23:26 
GeneralRe: about asp dot net? Pin
Ravindra Bisen25-Feb-09 1:00
Ravindra Bisen25-Feb-09 1:00 
Questionhow to open the download page in another window Pin
lakshmichawala24-Feb-09 22:42
lakshmichawala24-Feb-09 22:42 
AnswerRe: how to open the download page in another window Pin
Calin Tatar25-Feb-09 0:37
Calin Tatar25-Feb-09 0:37 
QuestionHow to redirec From Https to Http page in same application Pin
jainmravi24-Feb-09 22:36
jainmravi24-Feb-09 22:36 
Questionerror in reading file Pin
meghamaharshi24-Feb-09 22:12
meghamaharshi24-Feb-09 22:12 
AnswerRe: error in reading file Pin
N a v a n e e t h24-Feb-09 22:17
N a v a n e e t h24-Feb-09 22:17 
GeneralRe: error in reading file Pin
meghamaharshi24-Feb-09 22:29
meghamaharshi24-Feb-09 22:29 
GeneralRe: error in reading file Pin
Expert Coming24-Feb-09 22:33
Expert Coming24-Feb-09 22:33 
GeneralRe: error in reading file Pin
meghamaharshi24-Feb-09 22:38
meghamaharshi24-Feb-09 22:38 
QuestionImage Saving into SQL Database Pin
Robymon24-Feb-09 21:23
Robymon24-Feb-09 21:23 
AnswerRe: Image Saving into SQL Database Pin
N a v a n e e t h24-Feb-09 21:28
N a v a n e e t h24-Feb-09 21:28 
GeneralRe: Image Saving into SQL Database Pin
Robymon24-Feb-09 22:03
Robymon24-Feb-09 22:03 
AnswerRe: Image Saving into SQL Database Pin
N a v a n e e t h24-Feb-09 22:04
N a v a n e e t h24-Feb-09 22:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.