|
-
Jun 7th, 2001, 05:15 AM
#1
Thread Starter
Evil Genius
totally confused ...
- 1 ) [VB one] I normally use :
Code:
response.write request.form("TxtBox1")
for server side ASP to show the value of the textbox on the submitting
request form, on my current server / response page.
How can I get this working with a checkbox please 
Code:
<%
Dim TempVar
Select Case request.Form.Item("chkFixed.checked")
Case true
TempVar= "Hello World !"
Case false
TempVar = "Goodbye World !"
End Select
response.write TempVar
%>
- 2) [Java one] Probably a simple one this
,
how can I close the current page / window / instance
of the web browser please ?
I'm trying the following :
Code:
close();
window.close();
which isn't working.
Thanks all
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|