Click here to Skip to main content
15,887,214 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionfor executing lnkAddTraveller_Command event block when click on lnkAddTraveller link always need 2 times click Pin
trilokharry23-Oct-08 4:01
trilokharry23-Oct-08 4:01 
QuestionQuery String! Pin
blakshmi23-Oct-08 2:31
blakshmi23-Oct-08 2:31 
AnswerRe: Query String! Pin
Brij23-Oct-08 3:41
mentorBrij23-Oct-08 3:41 
AnswerRe: Query String! Pin
Abhijit Jana23-Oct-08 3:42
professionalAbhijit Jana23-Oct-08 3:42 
QuestionCan it is possible to fetch Client Mechine IP under Run Prosxy Server Pin
Rajeesrivastava23-Oct-08 2:18
Rajeesrivastava23-Oct-08 2:18 
AnswerRe: Can it is possible to fetch Client Mechine IP under Run Prosxy Server Pin
Paddy Boyd23-Oct-08 2:19
Paddy Boyd23-Oct-08 2:19 
QuestionDates of current week Pin
raghvendrapanda23-Oct-08 1:36
raghvendrapanda23-Oct-08 1:36 
AnswerRe: Dates of current week Pin
Ashfield23-Oct-08 2:06
Ashfield23-Oct-08 2:06 
This will give you all the dates in the current week - you will need to adfjust it depending on what your starting day is, this assumes Monday.

DateTime curr;
DateTime start = DateTime.Now.AddDays((int)DateTime.Now.DayOfWeek * -1);
for (int c = 1; c < 8; c++)
{
      curr = start.AddDays(c);
}


Bob
Ashfield Consultants Ltd

GeneralRe: Dates of current week Pin
Abhijit Jana23-Oct-08 3:39
professionalAbhijit Jana23-Oct-08 3:39 
GeneralRe: Dates of current week Pin
Ashfield23-Oct-08 9:32
Ashfield23-Oct-08 9:32 
QuestionHow to read gmail inbox attchment from .aspx page ????? Pin
subrat4all23-Oct-08 1:32
subrat4all23-Oct-08 1:32 
AnswerRe: How to read gmail inbox attchment from .aspx page ????? Pin
Abhijit Jana23-Oct-08 1:58
professionalAbhijit Jana23-Oct-08 1:58 
GeneralRe: How to read gmail inbox attchment from .aspx page ????? Pin
subrat4all23-Oct-08 2:11
subrat4all23-Oct-08 2:11 
AnswerRe: How to read gmail inbox attchment from .aspx page ????? Pin
Abhijit Jana23-Oct-08 3:33
professionalAbhijit Jana23-Oct-08 3:33 
GeneralRe: How to read gmail inbox attchment from .aspx page ????? Pin
subrat4all23-Oct-08 21:28
subrat4all23-Oct-08 21:28 
QuestionInformation passed from one page to another Pin
Kartik Rathi23-Oct-08 1:08
Kartik Rathi23-Oct-08 1:08 
AnswerRe: Information passed from one page to another Pin
raghvendrapanda23-Oct-08 1:12
raghvendrapanda23-Oct-08 1:12 
AnswerRe: Information passed from one page to another Pin
Paddy Boyd23-Oct-08 2:20
Paddy Boyd23-Oct-08 2:20 
QuestionCalender Control Pin
raghvendrapanda23-Oct-08 0:51
raghvendrapanda23-Oct-08 0:51 
AnswerRe: Calender Control Pin
Paddy Boyd23-Oct-08 2:03
Paddy Boyd23-Oct-08 2:03 
JokeRe: Calender Control Pin
Ashfield23-Oct-08 2:14
Ashfield23-Oct-08 2:14 
QuestionFind Out HDD serial No Pin
Rajeesrivastava23-Oct-08 0:41
Rajeesrivastava23-Oct-08 0:41 
AnswerRe: Find Out HDD serial No Pin
Ashfield23-Oct-08 1:37
Ashfield23-Oct-08 1:37 
AnswerRe: Find Out HDD serial No Pin
Abhijit Jana23-Oct-08 2:28
professionalAbhijit Jana23-Oct-08 2:28 
GeneralRe: Find Out HDD serial No Pin
AbouZeinab1-Jul-09 22:07
AbouZeinab1-Jul-09 22:07 

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.