Click here to Skip to main content
15,913,453 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Vbscript Pin
Michael Sync8-Jul-07 19:41
Michael Sync8-Jul-07 19:41 
GeneralRe: Vbscript Pin
garga18-Jul-07 23:50
garga18-Jul-07 23:50 
GeneralRe: Vbscript Pin
Michael Sync10-Jul-07 5:28
Michael Sync10-Jul-07 5:28 
GeneralRe: Vbscript Pin
Michael Sync10-Jul-07 5:30
Michael Sync10-Jul-07 5:30 
QuestionDisplay a month all dates..., Pin
Member 38798818-Jul-07 17:50
Member 38798818-Jul-07 17:50 
AnswerRe: Display a month all dates..., Pin
Sathesh Sakthivel8-Jul-07 18:13
Sathesh Sakthivel8-Jul-07 18:13 
GeneralRe: Display a month all dates..., Pin
Member 38798818-Jul-07 18:28
Member 38798818-Jul-07 18:28 
AnswerRe: Display a month all dates..., Pin
N a v a n e e t h8-Jul-07 21:02
N a v a n e e t h8-Jul-07 21:02 
int[] TotalDates = {31,29,31,30,31,30,31,31,30,31,30,31};	//Array contains no of days in each month
int CurrentYear = 2007;	
int CurrentMonth = 6;
if( DateTime.IsLeapYear(CurrentYear) )	//Checking leap year.
	TotalDates[1] = 28;	//Making february to 28

for(int i=1; i<=TotalDates[CurrentMonth - 1]; i++ )
{
	Console.WriteLine(CurrentMonth.ToString() + "/" + i.ToString() + "/" + CurrentYear.ToString());
}
Console.ReadLine();



QuestionI sit possible to "nest" an ASP.NET webapp inside another's root folder? Pin
Nostromo778-Jul-07 8:02
Nostromo778-Jul-07 8:02 
AnswerRe: I sit possible to &quot;nest&quot; an ASP.NET webapp inside another's root folder? Pin
Guffa8-Jul-07 9:14
Guffa8-Jul-07 9:14 
GeneralRe: I sit possible to &quot;nest&quot; an ASP.NET webapp inside another's root folder? Pin
Nostromo778-Jul-07 10:18
Nostromo778-Jul-07 10:18 
AnswerRe: I sit possible to &quot;nest&quot; an ASP.NET webapp inside another's root folder? Pin
Guffa8-Jul-07 13:16
Guffa8-Jul-07 13:16 
Questionedit datagrid Pin
prabhucse8-Jul-07 6:38
prabhucse8-Jul-07 6:38 
AnswerRe: edit datagrid Pin
sidbaruah8-Jul-07 23:03
sidbaruah8-Jul-07 23:03 
QuestionIn-line editing for ASP.net AJAX framework Pin
Erik Dahlstrand8-Jul-07 5:55
Erik Dahlstrand8-Jul-07 5:55 
QuestionJava script includion in Windows Application Pin
Narendra Mohan8-Jul-07 3:24
Narendra Mohan8-Jul-07 3:24 
AnswerRe: Java script includion in Windows Application Pin
Tamimi - Code8-Jul-07 3:27
Tamimi - Code8-Jul-07 3:27 
AnswerRe: Java script includion in Windows Application Pin
Vipin.d8-Jul-07 6:35
Vipin.d8-Jul-07 6:35 
AnswerRe: Java script includion in Windows Application Pin
Christian Graus8-Jul-07 6:48
protectorChristian Graus8-Jul-07 6:48 
QuestionFormView Control Pin
AvidOn-Tech8-Jul-07 2:13
AvidOn-Tech8-Jul-07 2:13 
QuestionPrevent Page reveiw after logout Pin
netwizerd7-Jul-07 22:27
netwizerd7-Jul-07 22:27 
QuestionASP.NET Insert data into MySQL Pin
drexler_kk7-Jul-07 21:23
drexler_kk7-Jul-07 21:23 
AnswerRe: ASP.NET Insert data into MySQL Pin
Memo Soso7-Jul-07 21:36
Memo Soso7-Jul-07 21:36 
GeneralRe: ASP.NET Insert data into MySQL Pin
drexler_kk7-Jul-07 21:44
drexler_kk7-Jul-07 21:44 
Questionhow to include a javascript file in aspx ? Pin
dbn8317-Jul-07 8:50
dbn8317-Jul-07 8:50 

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.