Click here to Skip to main content
15,914,066 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMove Back problems Pin
Bajrang Singh29-May-07 22:51
Bajrang Singh29-May-07 22:51 
Questionimport file asp.net Pin
kvijayajyothy29-May-07 22:27
kvijayajyothy29-May-07 22:27 
AnswerRe: import file asp.net Pin
nareshss29-May-07 23:17
nareshss29-May-07 23:17 
GeneralRe: import file asp.net Pin
kvijayajyothy29-May-07 23:41
kvijayajyothy29-May-07 23:41 
GeneralRe: import file asp.net Pin
nareshss29-May-07 23:53
nareshss29-May-07 23:53 
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 

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.