Click here to Skip to main content
15,924,402 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionStart a process in a web service. Pin
CodingLover2-Nov-08 20:06
CodingLover2-Nov-08 20:06 
QuestionError: Validation (Internet Explorer 6): Attribute 'MS_POSITIONING' is not a valid attribute of element 'body'. Pin
Samiullah2-Nov-08 19:51
Samiullah2-Nov-08 19:51 
AnswerRe: Error: Validation (Internet Explorer 6): Attribute 'MS_POSITIONING' is not a valid attribute of element 'body'. Pin
Guffa2-Nov-08 21:10
Guffa2-Nov-08 21:10 
QuestionMozilla problem Urgent.....???? Pin
Johndas2-Nov-08 19:39
Johndas2-Nov-08 19:39 
AnswerRe: IE problem Pin
Guffa2-Nov-08 21:15
Guffa2-Nov-08 21:15 
QuestionHi , How to Add Time Values. Pin
Sneha Bisht2-Nov-08 18:57
Sneha Bisht2-Nov-08 18:57 
AnswerRe: Hi , How to Add Time Values. Pin
_AK_2-Nov-08 20:12
_AK_2-Nov-08 20:12 
AnswerRe: Hi , How to Add Time Values. Pin
Guffa2-Nov-08 21:27
Guffa2-Nov-08 21:27 
Turn those values into TimeSpan values, representing the time span from midnight to the time given. Then you can easily add them. Use the Hours, Minutes and Seconds properties to get the result. Or add the TimeSpan to a DateTime value to make it a DateTime, which you can easily format into a string.

Example:
TimeSpan t1 = new TimeSpan(9, 0, 0);
TimeSpan t2 = new TimeSpan(9, 25, 0);
TimeSpan total = t1 + t2;
string result = DateTime.Today.Add(total).ToString("HH:mm:ss"));


Despite everything, the person most likely to be fooling you next is yourself.

Question'Microsoft.Jet.OLEDB.4.0' Issue Pin
Haridas.R2-Nov-08 17:37
Haridas.R2-Nov-08 17:37 
QuestionFind Control in EditItemTemplate Column In DataGrid Pin
itsruta2-Nov-08 17:08
itsruta2-Nov-08 17:08 
AnswerRe: Find Control in EditItemTemplate Column In DataGrid Pin
_AK_2-Nov-08 20:13
_AK_2-Nov-08 20:13 
GeneralRe: Find Control in EditItemTemplate Column In DataGrid Pin
itsruta2-Nov-08 21:44
itsruta2-Nov-08 21:44 
QuestionError #2048: Security sandbox violation in [modified] Pin
mangrovecm2-Nov-08 1:33
mangrovecm2-Nov-08 1:33 
QuestionRe: Error #2048: Security sandbox violation in Pin
DJANEK123425-Jan-09 6:32
DJANEK123425-Jan-09 6:32 
QuestionWhat could cause not to edit an item in listview at 1st click but 2nd click? Pin
JUNEYT1-Nov-08 9:52
JUNEYT1-Nov-08 9:52 
QuestionPlease help me with this problem!!!! Pin
mabbas_861-Nov-08 8:11
mabbas_861-Nov-08 8:11 
AnswerRe: Please help me with this problem!!!! Pin
Guffa2-Nov-08 17:19
Guffa2-Nov-08 17:19 
GeneralRe: Please help me with this problem!!!! Pin
N a v a n e e t h2-Nov-08 20:58
N a v a n e e t h2-Nov-08 20:58 
General64 bit issue. Pin
Haridas.R1-Nov-08 7:04
Haridas.R1-Nov-08 7:04 
GeneralRe: 64 bit issue. Pin
Paul Conrad1-Nov-08 7:19
professionalPaul Conrad1-Nov-08 7:19 
QuestionTableless HTML Design?? [modified] Pin
Blumen1-Nov-08 3:28
Blumen1-Nov-08 3:28 
AnswerRe: Tableless HTML Design?? Pin
JimmyRopes1-Nov-08 4:32
professionalJimmyRopes1-Nov-08 4:32 
AnswerRe: Tableless HTML Design?? Pin
Guffa1-Nov-08 6:35
Guffa1-Nov-08 6:35 
GeneralRe: Tableless HTML Design?? Pin
Blumen1-Nov-08 18:24
Blumen1-Nov-08 18:24 
AnswerRe: Tableless HTML Design?? Pin
N a v a n e e t h2-Nov-08 17:01
N a v a n e e t h2-Nov-08 17:01 

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.