Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
CharlyAR #1
Server-side hide or show something depending on a URLparameter
Hi.
I want to show some rows from a table depending of wich langauje I specify in
the URL (default.asp?lang=en) using JScript.
I get the variable using Request.QueryString('lang') but I don't know how to
use the "If" sentence..
Somebody would help me? Tnx!
<% if (Request.QueryString('lang') == 'en') { %>
<tr>
<td align="center">English</td>
</tr>
<% } %>
CharlyAR Guest
-
How to hide toolbar on left side of pdf
Hello, We have a vb.net 2005 windows application using the activeX control. We currently hide the scrollbars and show only a limited number of... -
How to hide/show a group
Hello, I created a group and added some children to it How can I show/hide the group with all children included? The group itself doesn't have... -
popup menus won't hide - PVII show/hide layers behaviour
I've used the 'Auto show/hide by PVII" behaviour to create some popup menus for the navigation which make use of divs which appear and disappear.... -
hide/show with mouseover
I have page with all the medical terms. Instead of click on each term to show the definition, I want it to show when I have the mouseover on each... -
hide password on client side
Did anyone tried to hide a password on client side before sending it over net (MD5 - like yahoo mail client)? thank you, Jure -
CharlyAR #2
Re: Server-side hide or show something depending on aURL parameter
Found it, the code is:
<% if (Request.QueryString("lang") = "es") then %>
<tr>
<td align="center">English</td>
</tr>
<% end if %>
CharlyAR Guest



Reply With Quote

