Click here to Skip to main content
16,017,608 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: How do you delete Internet Explorer Cookies Progamatically? Pin
kayhustle30-Aug-04 8:25
kayhustle30-Aug-04 8:25 
GeneralIIS--> Windows NT Pin
jphuphilly26-Aug-04 7:25
jphuphilly26-Aug-04 7:25 
GeneralRe: IIS--> Windows NT Pin
David Salter26-Aug-04 11:05
David Salter26-Aug-04 11:05 
GeneralRe: IIS--> Windows NT Pin
jphuphilly27-Aug-04 10:47
jphuphilly27-Aug-04 10:47 
QuestionHow to transfer data in Real Time over the net Pin
Deepak Samuel26-Aug-04 5:55
Deepak Samuel26-Aug-04 5:55 
AnswerRe: How to transfer data in Real Time over the net Pin
alex.barylski26-Aug-04 9:47
alex.barylski26-Aug-04 9:47 
AnswerRe: How to transfer data in Real Time over the net Pin
Anonymous26-Aug-04 14:42
Anonymous26-Aug-04 14:42 
GeneralEnter char Pin
Brendan Vogt26-Aug-04 2:38
Brendan Vogt26-Aug-04 2:38 
I use the following function to test whether a string is alphanumeric. If it does not contain any of these characters, then it will display an error. Now I have an error with the element because I pressed enter a couple of time, and it doesn't pick it up here? How do I enter the enter character in the function below? I hope you understand. This a valid text Good moring, but when I do the following then there is an error,
Good moring

Good moring

Good moring

function isAlphaNumeric(str)
{
var i;

for(i = 0; i < str.length; i++)
{
if(!( ((str.charAt(i) <= '9') && (str.charAt(i) >= '0')) ||
((str.charAt(i) <= 'z') && (str.charAt(i) >= 'a')) ||
((str.charAt(i) <= 'Z') && (str.charAt(i) >= 'A')) ||
(str.charAt(i) == ' ') || (str.charAt(i) == '-') ||
(str.charAt(i) == 'é') || (str.charAt(i) == 'ë') ||
(str.charAt(i) == 'ê') || (str.charAt(i) == 'ü') ||
(str.charAt(i) == '_') ))
return(false);
}
return(true);
}

Your help and time is appreciated!!!


Thanks
BRENDAN VOGT
GeneralRe: Enter char Pin
David Salter26-Aug-04 5:46
David Salter26-Aug-04 5:46 
GeneralSQL Server - NULL Values Pin
Brendan Vogt26-Aug-04 2:37
Brendan Vogt26-Aug-04 2:37 
GeneralRe: SQL Server - NULL Values Pin
Colin Angus Mackay26-Aug-04 12:29
Colin Angus Mackay26-Aug-04 12:29 
GeneralRe: SQL Server - NULL Values Pin
Jon Sagara26-Aug-04 15:02
Jon Sagara26-Aug-04 15:02 
GeneralRe: SQL Server - NULL Values Pin
Brendan Vogt27-Aug-04 0:43
Brendan Vogt27-Aug-04 0:43 
GeneralRe: SQL Server - NULL Values Pin
Jon Sagara27-Aug-04 2:29
Jon Sagara27-Aug-04 2:29 
GeneralGetRows() method Pin
Brendan Vogt26-Aug-04 2:34
Brendan Vogt26-Aug-04 2:34 
GeneralPulling Client Computer Name Pin
BigRod25-Aug-04 21:13
BigRod25-Aug-04 21:13 
GeneralRe: Pulling Client Computer Name Pin
David Salter26-Aug-04 5:51
David Salter26-Aug-04 5:51 
GeneralRe: Pulling Client Computer Name Pin
basementman26-Aug-04 7:44
basementman26-Aug-04 7:44 
GeneralRe: Pulling Client Computer Name Pin
kumar_manoj7729-Aug-04 21:14
kumar_manoj7729-Aug-04 21:14 
GeneralASP &amp; JavaScript Pin
TrungHuynh25-Aug-04 15:04
TrungHuynh25-Aug-04 15:04 
GeneralIIS Shortcut missing Pin
Brent Lamborn25-Aug-04 13:38
Brent Lamborn25-Aug-04 13:38 
Generalcreate cookie file on client Pin
sas222225-Aug-04 10:25
sas222225-Aug-04 10:25 
GeneralRe: create cookie file on client Pin
sas222226-Aug-04 5:32
sas222226-Aug-04 5:32 
GeneralASP-Logging Pin
pat27088125-Aug-04 3:29
pat27088125-Aug-04 3:29 
GeneralUsing SoapLogger and SoapLoggerAttribute Pin
pat27088124-Aug-04 11:59
pat27088124-Aug-04 11:59 

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.