Click here to Skip to main content
15,891,204 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: import file asp.net Pin
Paddy Boyd30-May-07 0:07
Paddy Boyd30-May-07 0:07 
QuestionHow to upload a resume in word format in a asp.net application Pin
Prakash_Mishra29-May-07 21:51
Prakash_Mishra29-May-07 21:51 
AnswerRe: How to upload a resume in word format in a asp.net application Pin
nareshss29-May-07 22:21
nareshss29-May-07 22:21 
GeneralRe: How to upload a resume in word format in a asp.net application Pin
Prakash_Mishra30-May-07 0:33
Prakash_Mishra30-May-07 0:33 
GeneralRe: How to upload a resume in word format in a asp.net application Pin
nareshss30-May-07 0:47
nareshss30-May-07 0:47 
QuestionCheck the Given date is sunday or not..., Pin
Member 387988129-May-07 21:32
Member 387988129-May-07 21:32 
AnswerRe: Check the Given date is sunday or not..., Pin
Luka Grabarevic29-May-07 23:13
Luka Grabarevic29-May-07 23:13 
AnswerRe: Check the Given date is sunday or not..., Pin
Venk25929-May-07 23:28
Venk25929-May-07 23:28 
VB Code -.net 2.0
-------

Dim dateobj As Date
dateobj = Now

If( dateobj.DayOfWeek = DayOfWeek.Sunday) Then
textbox1.Text=CInt(textbox2.Text) + CInt(textbox3.Text)
Else
textbox1.Text=CInt(textbox2.Text) + CInt(textbox4.Text)
End If

C# Code-.net 2.0
-------

DateTime dateobj;
dateobj = DateTime.Now;

if( dateobj.DayOfWeek == DayOfWeek.Sunday)
{
textbox1.Text=Convert.ToInt32(textbox2.Text) + Convert.ToInt32(textbox3.Text)
}
else
{
textbox1.Text=Convert.ToInt32(textbox2.Text) + Convert.ToInt32(textbox4.Text)
}

AnswerRe: Check the Given date is sunday or not..., Pin
Prakash_Mishra29-May-07 23:36
Prakash_Mishra29-May-07 23:36 
Questionusing ASP.net - convert sql table into xml data Pin
nareshss29-May-07 21:27
nareshss29-May-07 21:27 
AnswerRe: using ASP.net - convert sql table into xml data Pin
Tamimi - Code29-May-07 21:35
Tamimi - Code29-May-07 21:35 
Questioninserting multiple rows at a time Pin
yuvachandra29-May-07 21:12
yuvachandra29-May-07 21:12 
AnswerRe: inserting multiple rows at a time Pin
Laxmikant Lad29-May-07 21:20
Laxmikant Lad29-May-07 21:20 
Question[Message Deleted] Pin
Junior Boy29-May-07 21:01
Junior Boy29-May-07 21:01 
AnswerRe: Convert VB .NET to C# .NET Pin
Jay_se29-May-07 21:07
Jay_se29-May-07 21:07 
GeneralRe: Convert VB .NET to C# .NET Pin
Junior Boy29-May-07 21:17
Junior Boy29-May-07 21:17 
AnswerRe: Convert VB .NET to C# .NET Pin
Christian Graus29-May-07 21:26
protectorChristian Graus29-May-07 21:26 
GeneralRe: Convert VB .NET to C# .NET Pin
Junior Boy29-May-07 21:57
Junior Boy29-May-07 21:57 
AnswerRe: Convert VB .NET to C# .NET Pin
Steven J Jowett29-May-07 22:20
Steven J Jowett29-May-07 22:20 
GeneralRe: Convert VB .NET to C# .NET Pin
Guffa29-May-07 23:46
Guffa29-May-07 23:46 
QuestionPassword field lost their values Pin
suveenmohan29-May-07 20:42
suveenmohan29-May-07 20:42 
AnswerRe: Password field lost their values Pin
marky77729-May-07 20:46
marky77729-May-07 20:46 
GeneralRe: Password field lost their values Pin
suveenmohan29-May-07 21:49
suveenmohan29-May-07 21:49 
GeneralRe: Password field lost their values Pin
marky77729-May-07 21:59
marky77729-May-07 21:59 
QuestionFile Download problem.... Pin
manjunath hindupur29-May-07 20:32
manjunath hindupur29-May-07 20:32 

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.