Click here to Skip to main content
15,892,674 members
Home / Discussions / Web Development
   

Web Development

 
Generalexprie a web page Pin
cmarmr11-Oct-04 16:51
cmarmr11-Oct-04 16:51 
GeneralRe: exprie a web page Pin
V.12-Oct-04 4:18
professionalV.12-Oct-04 4:18 
GeneralRe: exprie a web page Pin
Andrew Quinn AUS13-Oct-04 14:15
Andrew Quinn AUS13-Oct-04 14:15 
GeneralDrill Down Crystal Report!! Pin
RADSGR10-Oct-04 20:54
RADSGR10-Oct-04 20:54 
GeneralRe: Drill Down Crystal Report!! Pin
Pradeep Shamarao28-Oct-04 19:43
Pradeep Shamarao28-Oct-04 19:43 
Generaldate validation Pin
Miroblue0510-Oct-04 0:54
Miroblue0510-Oct-04 0:54 
GeneralRe: date validation Pin
alex.barylski11-Oct-04 18:08
alex.barylski11-Oct-04 18:08 
GeneralRe: date validation Pin
André Michel12-Oct-04 0:02
sussAndré Michel12-Oct-04 0:02 
A quick'n'dirty solution to validate a date on the server side:

/* needed to parse DateTime-Values (for Germany) */
protected IFormatProvider culture = new CultureInfo("de-DE", true);
protected string[] expectedFormat = {"D", "d"};
/***********************************/

private bool ValidateDateString(string dateString) {

try {
DateTime validationDate = DateTime.ParseExact(dateString,
expectedFormat, culture, DateTimeStyles.AllowWhiteSpaces);
}
catch {
return(false);
}

return(true);
}

Smile | :)
GeneralDisplay real time data on the web Pin
loicmichel9-Oct-04 23:36
loicmichel9-Oct-04 23:36 
GeneralRe: Display real time data on the web Pin
User 25755210-Oct-04 8:39
User 25755210-Oct-04 8:39 
GeneralXML/XLS using DOM Pin
Milan20079-Oct-04 13:39
Milan20079-Oct-04 13:39 
GeneralRe: XML/XLS using DOM Pin
Milan20079-Oct-04 17:42
Milan20079-Oct-04 17:42 
QuestionIt's difficult to run my Web Application. Why? Pin
DotNet9-Oct-04 1:56
DotNet9-Oct-04 1:56 
AnswerRe: It's difficult to run my Web Application. Why? Pin
User 2575529-Oct-04 9:14
User 2575529-Oct-04 9:14 
GeneralRe: It's difficult to run my Web Application. Why? Pin
DotNet9-Oct-04 21:50
DotNet9-Oct-04 21:50 
GeneralRe: It's difficult to run my Web Application. Why? Pin
User 25755210-Oct-04 3:35
User 25755210-Oct-04 3:35 
GeneralRe: It's difficult to run my Web Application. Why? Pin
DotNet10-Oct-04 4:26
DotNet10-Oct-04 4:26 
GeneralRe: It's difficult to run my Web Application. Why? Pin
Colin Angus Mackay10-Oct-04 4:07
Colin Angus Mackay10-Oct-04 4:07 
Generaljava script:problem with creating web control Pin
amalatsliit8-Oct-04 18:47
amalatsliit8-Oct-04 18:47 
GeneralRe: java script:problem with creating web control Pin
Tomas Petricek9-Oct-04 14:41
Tomas Petricek9-Oct-04 14:41 
Generalproblem with web page Pin
cmarmr8-Oct-04 10:08
cmarmr8-Oct-04 10:08 
GeneralRe: problem with web page Pin
Colin Angus Mackay8-Oct-04 10:54
Colin Angus Mackay8-Oct-04 10:54 
GeneralRe: problem with web page Pin
cmarmr8-Oct-04 11:17
cmarmr8-Oct-04 11:17 
GeneralRe: problem with web page Pin
Colin Angus Mackay8-Oct-04 11:32
Colin Angus Mackay8-Oct-04 11:32 
GeneralXSL Transform and ASP question Pin
Adam Gritt8-Oct-04 4:55
Adam Gritt8-Oct-04 4:55 

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.