Click here to Skip to main content
15,920,031 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Exception when calling webservice. Pin
narendra.vendi30-May-07 3:34
narendra.vendi30-May-07 3:34 
GeneralRe: Exception when calling webservice. Pin
Sathesh Sakthivel30-May-07 3:48
Sathesh Sakthivel30-May-07 3:48 
GeneralRe: Exception when calling webservice. Pin
narendra.vendi30-May-07 4:06
narendra.vendi30-May-07 4:06 
GeneralRe: Exception when calling webservice. Pin
Sathesh Sakthivel30-May-07 5:25
Sathesh Sakthivel30-May-07 5:25 
QuestionGetting changes to the data from a repeater control Pin
Senseicads30-May-07 3:03
Senseicads30-May-07 3:03 
AnswerRe: Getting changes to the data from a repeater control Pin
Fred_Smith30-May-07 4:27
Fred_Smith30-May-07 4:27 
GeneralRe: Getting changes to the data from a repeater control Pin
Senseicads30-May-07 5:01
Senseicads30-May-07 5:01 
GeneralRe: Getting changes to the data from a repeater control Pin
Fred_Smith30-May-07 5:33
Fred_Smith30-May-07 5:33 
You'll want something like this in your ItemDataBound event handler:

If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
Dim dr As DataRow = e.Item.DataItem.Row, DataRowView
Dim d as Date = CDate(dr("LastUpdate"))
' now compare this time with "Now" and if within appropriate time-frame, highlight row...
End If

It gets called for each row...

How you then highlight the row is another matter...! I'm pretty sure I've seen articles on CP about this... or Google it - the answer is out there...

cheers
Fred


GeneralRe: Getting changes to the data from a repeater control Pin
Senseicads30-May-07 6:56
Senseicads30-May-07 6:56 
GeneralRe: Getting changes to the data from a repeater control Pin
Fred_Smith30-May-07 7:01
Fred_Smith30-May-07 7:01 
GeneralRe: Getting changes to the data from a repeater control Pin
Senseicads30-May-07 7:12
Senseicads30-May-07 7:12 
QuestionError: There is no source code available for the current location Pin
Sam.M30-May-07 2:28
Sam.M30-May-07 2:28 
AnswerRe: Error: There is no source code available for the current location Pin
marky77730-May-07 4:30
marky77730-May-07 4:30 
QuestionHow can current Session can be sent with the WebRequest! Pin
Rana Muhammad Javed Khan30-May-07 2:23
Rana Muhammad Javed Khan30-May-07 2:23 
AnswerRe: How can current Session can be sent with the WebRequest! Pin
Fred_Smith30-May-07 4:47
Fred_Smith30-May-07 4:47 
GeneralRe: How can current Session can be sent with the WebRequest! Pin
Rana Muhammad Javed Khan30-May-07 6:43
Rana Muhammad Javed Khan30-May-07 6:43 
GeneralRe: How can current Session can be sent with the WebRequest! Pin
Fred_Smith30-May-07 6:59
Fred_Smith30-May-07 6:59 
GeneralRe: How can current Session can be sent with the WebRequest! Pin
Rana Muhammad Javed Khan30-May-07 9:14
Rana Muhammad Javed Khan30-May-07 9:14 
GeneralRe: How can current Session can be sent with the WebRequest! Pin
Fred_Smith30-May-07 13:42
Fred_Smith30-May-07 13:42 
QuestionPrinting problem Pin
umashankergr830-May-07 1:59
umashankergr830-May-07 1:59 
AnswerRe: Printing problem Pin
kubben30-May-07 5:13
kubben30-May-07 5:13 
GeneralRe: Printing problem Pin
umashankergr830-May-07 6:52
umashankergr830-May-07 6:52 
GeneralRe: Printing problem Pin
kubben30-May-07 7:39
kubben30-May-07 7:39 
GeneralRe: Printing problem Pin
umashankergr830-May-07 8:01
umashankergr830-May-07 8:01 
GeneralRe: Printing problem Pin
kubben30-May-07 8:04
kubben30-May-07 8: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.