Click here to Skip to main content
15,888,157 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Logging out of the website Pin
Ravi_2110-Nov-08 19:29
Ravi_2110-Nov-08 19:29 
Questionneed to place the cursor in the taxtbox Pin
mahaboobs10-Nov-08 4:10
mahaboobs10-Nov-08 4:10 
AnswerCP IGNORE: Cross post Pin
leckey10-Nov-08 4:54
leckey10-Nov-08 4:54 
QuestionRich text box Pin
Member 387988110-Nov-08 3:44
Member 387988110-Nov-08 3:44 
QuestionRegarding Interop.Microsoft.Office.Interop.Word.dll Pin
chinnu bangaram10-Nov-08 3:12
chinnu bangaram10-Nov-08 3:12 
AnswerRe: Regarding Interop.Microsoft.Office.Interop.Word.dll Pin
Paddy Boyd10-Nov-08 3:13
Paddy Boyd10-Nov-08 3:13 
QuestionExport html table to excel sheet Pin
Rohit16db10-Nov-08 2:05
Rohit16db10-Nov-08 2:05 
QuestionHow to find age in dd/mm/yyyy format Pin
raghvendrapanda10-Nov-08 1:56
raghvendrapanda10-Nov-08 1:56 
Hy,
how can i find the age of a person in dd/mm/yyyy format.....if the date of birth is given..
i have written a code but it doesent find the number of days(whn the current date is less than the date of birth ex 7/11/2008 - 12/10/2008 )
my code is

string m_Str = TextBox1.Text;
int m_Y1 = DateTime.Parse(m_Str).Year;
int m_m1 = DateTime.Parse(m_Str).Month;
int m_d1 = DateTime.Parse(m_Str).Day;
int m_Y2 = DateTime.Now.Year;
int m_m2 = DateTime.Now.Month;
int m_d2 = DateTime.Now.Day;
int m_date = m_d2 - m_d1;
if (m_date < 0)
{
m_m2 = m_m2 - 1;
?????
}


int m_month = m_m2 - m_m1;
if (m_month < 0)
{
m_Y2 = m_Y2 - 1;
m_m2 = m_m2 + 12;
m_month = m_m2 - m_m1;
AnswerRe: How to find age in dd/mm/yyyy format Pin
Paddy Boyd10-Nov-08 1:59
Paddy Boyd10-Nov-08 1:59 
QuestionASP LINK BUTTON PROPERTY ENABLED=FALSE NOT WORKING IN FIRE FOX :( HELP Pin
Member 343561410-Nov-08 1:45
Member 343561410-Nov-08 1:45 
AnswerRe: ASP LINK BUTTON PROPERTY ENABLED=FALSE NOT WORKING IN FIRE FOX :( HELP Pin
Guffa10-Nov-08 2:11
Guffa10-Nov-08 2:11 
QuestionDatagridview Pin
sram1510-Nov-08 0:21
sram1510-Nov-08 0:21 
AnswerRe: Datagridview Pin
Parwej Ahamad10-Nov-08 0:34
professionalParwej Ahamad10-Nov-08 0:34 
AnswerRe: Datagridview Pin
N a v a n e e t h10-Nov-08 1:05
N a v a n e e t h10-Nov-08 1:05 
QuestionClosing the Internet browser Pin
ahmed eldeghedy9-Nov-08 23:45
professionalahmed eldeghedy9-Nov-08 23:45 
AnswerRe: Closing the Internet browser Pin
eyeseetee9-Nov-08 23:48
eyeseetee9-Nov-08 23:48 
QuestionHelp- File upload using ajax Pin
Vaibhav Saran9-Nov-08 23:01
Vaibhav Saran9-Nov-08 23:01 
AnswerRe: Help- File upload using ajax Pin
Abhishek Sur10-Nov-08 2:07
professionalAbhishek Sur10-Nov-08 2:07 
QuestionBackground Color using CSS Pin
saurabh mohal9-Nov-08 22:28
saurabh mohal9-Nov-08 22:28 
AnswerRe: Background Color using CSS Pin
Zafar Iqbal9-Nov-08 23:23
Zafar Iqbal9-Nov-08 23:23 
GeneralRe: Background Color using CSS Pin
saurabh mohal10-Nov-08 0:54
saurabh mohal10-Nov-08 0:54 
Questionaccessing row in gridview Pin
eyeseetee9-Nov-08 22:04
eyeseetee9-Nov-08 22:04 
AnswerRe: accessing row in gridview Pin
meeram3959-Nov-08 22:18
meeram3959-Nov-08 22:18 
GeneralRe: accessing row in gridview Pin
eyeseetee9-Nov-08 22:21
eyeseetee9-Nov-08 22:21 
QuestionAdd/update nodes in xml file using javascript Pin
DineshSharmain9-Nov-08 21:47
DineshSharmain9-Nov-08 21:47 

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.