knuckle05 - yes, if you process XML server-side, all you end up sending the browser is plain old HTML. While HTML is not quite as browser independent as we'd all like ;-), at least you won't have to worry about sending your XML client-side.
Endbringer - GiffordS is correct in saying Netscape...
You can track the number of active users through routines in a global.asa file.
Here's an article which tells you exactly what to do:
http://www.asp101.com/resources/active_users.asp
--k
There is no such thing as a "for loop" in XSL, only a for-each loop. You'll have to mimic the logic of a for loop using parameters, named templates and an "if" statement.
Try the following code (you'll have to customize it to work with your xml):
<xsl:template...
FYI: The "hover button" component in FrontPage inserts a Java Applet on your page (NOT a typical rollover using 2 images and some javascript).
A couple of questions for you (to try to narrow down the problem):
1. Are you "previewing" your page on the "preview"...
You've got three options in client-side JavaScript for passing informaiton among pages:
1. Cookies - learn to write and retrieve cookie information, Cookies can be written to last for the length of the browswer session (temporary cookies - stored in memory) , or for days/months/years...
Short answer: Nope.
Is it the Photoshop's fault: No.
Long Answer:
Regardless of what program you use to create your signature graphic (Photoshop, Illustrator, Etc.) the result you're aiming for is a .gif or a .png file (which are both rasterized formats). Starting with one program or the...
The error message is basically saying " <xsl:script>" is not part of the version of XSL(T) that you are using. The namsepace you've declared specifically says you are using XSL(T) version 1.0, and the "<xsl:script>" element is part of XSL(T) 1.1.
You can try changing the...
What browser are you previewing in? Only a handfull support alpha transparency for 24bit png's natively. Here's a partial list:
DON'T support alpha (partial) transparency:
Internet Explorer 6 (and 5 and 4)
Netscape 4
Opera 5
DO support alpha transparency:
Mozilla 1+
Netscape...
Please excuse the technical difficulties ;-) let's try that again.....
Have you tried the "<" and the ">" with their individual entity references? So, use "& lt ;" in place of "<" and "& gt ;" in place of ">"? (Please forgive the...
Try the inStr() function, e.g.:
inStr(stringtosearch,stringtofind)
You example could read like this:
If inStr(session("Item1"),"ABCD")<>0 Then
The inStr() function returns an integer value representing the starting(character) position of one string ("ABCD") in...
There is a newer feature of CSS (2) that will allow you to separate input types (however, currently not supported in IE):
input[type="text"] {....}
Here's a reference describing it's use: http://www.blooberry.com/indexdot/css/syntax/selectors/attribute.htm#value
If you need...
Going back to your first example:
for (i = 1; i<=javacount; i++) {
var value = document.frmtermno.txttermno + i + .value;
alert(value)
}
Try this instead:
for (i = 1; i<=javacount; i++) {
var value = eval("document.frmtermno.txttermno" + i + ".value")...
Could you post the form (or part of the form) that your working with? Hope this helps.
Ciao, K----------------
"If you were supposed to understand it, we wouldn't call it code" - FedEx
Try this:
for (i = 1; i<=document.frmtermno.txttermno.length; i++) {
var value = document.frmtermno.txttermno.value;
alert(value)
}
Note: If you've automatically populated your array, the initial index is 0 (zero), not 1, and so you may need to intialize your for loop like this instead...
You could also code it like this:
<span class="navbar"><a href="http://mail.optihost.net" target="WebMail" onClick="NewWindow=window.open('','WebMail','width=500,height=400')"> Webmail</a></span>
Advantage - backwards compatibility. Users who don't have...
Try using single quotes around your value, e.g.:
<option value='<%=rsUserInfo("usr_firstName")%>'>First Name Hope this helps.
Ciao, K----------------
"If you were supposed to understand it, we wouldn't call it code" - FedEx
The ASP is processed before the generated HTML and Javascript ever hit the user's browser.
One possible solution: insert an intermediate page which asks if the user wants to "process" or "stop", then redirects either to the page which processes the orders, or to your admin...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.