Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~112 People Reached
Favorite Tags
Member Avatar for drboring

I am new to Python Server Pages (psp). Can psp “read” the html field value? Example: [CODE] <html> : : <body> <input type="hidden" id="selected" name="selected" value="0"> <% # Read/Get the above hidden field value # Perform some task #re-write the hidden field value %> : : </body> </html> [/CODE] Thanks …

Member Avatar for slate
0
36
Member Avatar for drboring

I am new to JavaScript. Therefore, I don't understand how the following javascript code work: [CODE] var specialChars="/\\(\\)><@,;:\\\\\\\"\\.\\[\\]\*\+\?\!\#\$\%\^\&\=\~\`\|\/'"; var validChars="\[^\\s" + specialChars + "\]"; var atom=validChars + '+'; var atomPat=new RegExp("^" + atom + "$"); var str = "Hello World!"; if (str.search(atomPat)==-1) { alert ("Special Characters Found!"); } [/CODE] When …

Member Avatar for jomanlk
-1
76