|
 |
asp_web_howto thread: Forms on submit open new window????
Message #1 by Joseph Coppola <joco@e...> on Wed, 24 Apr 2002 00:07:38 -0400
|
|
Ok I am totally lost.
I have a form that is filled out by a user, on submit the form runs an
ASP page that returns matching records based on values in the form.
This works fine, now I want the ASP page to be displayed in a new window
not the existing one... But I cannot figure out how to do it.
Any ideas?
Thanks,
Joe Coppola
Message #2 by "Ken Schaefer" <ken@a...> on Wed, 24 Apr 2002 15:05:35 +1000
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Joseph Coppola" <joco@e...>
Subject: [asp_web_howto] Forms on submit open new window????
: I have a form that is filled out by a user, on submit the form runs an
: ASP page that returns matching records based on values in the form.
: This works fine, now I want the ASP page to be displayed in a new window
: not the existing one... But I cannot figure out how to do it.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't do it with ASP - ASP runs entirely on the *server*.
You need to to use client-side technologies to open new browser windows. For
example you could use javascript to open a new window passing in the value
of the form elements. The new window requests the ASP page passing the
variables as part of the querystring.
If you are only use HTML 4.0 Transitional, then you could also do this
(notice the target attribute)
<form method="post" action="mypage.asp" target="_blank">
</form>
Cheers
Ken
Message #3 by "Drew, Ron" <RDrew@B...> on Wed, 24 Apr 2002 08:10:20 -0400
|
|
JAVASCRIPT
<script language=3D"JavaScript">
<!--
function newWindow() {
var
x=3Dwindow.open('xxx.asp','sub','height=3D500,width=3D450,left=3D450');
}
//-->
</script>
-----Original Message-----
From: Joseph Coppola [mailto:joco@e...]
Sent: Wednesday, April 24, 2002 12:08 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Forms on submit open new window????
Ok I am totally lost.
I have a form that is filled out by a user, on submit the form runs an
ASP page that returns matching records based on values in the form. This
works fine, now I want the ASP page to be displayed in a new window not
the existing one... But I cannot figure out how to do it.
Any ideas?
Thanks,
Joe Coppola
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #4 by "Drew, Ron" <RDrew@B...> on Wed, 24 Apr 2002 08:13:54 -0400
|
|
Forget to add that point. After you open the new window, you can update
hidden fields on the window that opened the new one by using something
like this in the new window. In this case the new window City field
will update the opener window City hidden field value.
<INPUT size=3D20 name=3D"City"
onBlur=3D"opener.document.forms[0].City.value =3D
this.value">
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Wednesday, April 24, 2002 1:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Joseph Coppola" <joco@e...>
Subject: [asp_web_howto] Forms on submit open new window????
: I have a form that is filled out by a user, on submit the form runs an
: ASP page that returns matching records based on values in the form.
: This works fine, now I want the ASP page to be displayed in a new
window
: not the existing one... But I cannot figure out how to do it.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't do it with ASP - ASP runs entirely on the *server*.
You need to to use client-side technologies to open new browser windows.
For example you could use javascript to open a new window passing in the
value of the form elements. The new window requests the ASP page passing
the variables as part of the querystring.
If you are only use HTML 4.0 Transitional, then you could also do this
(notice the target attribute)
<form method=3D"post" action=3D"mypage.asp" target=3D"_blank">
</form>
Cheers
Ken
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #5 by "Joe Coppola" <joco@e...> on Wed, 24 Apr 2002 09:28:48 -0400
|
|
So, in order to pass the values from the form to the new window I have
to use hidden fields?
Also, currently my page starts off with <%Lnaguage=VBScript%> but now I
will need to make a java call, how can I change the script language?
One more thing, do I call the openwindow from the FORM ACTION command to
somewhere else?
Thanks,
Joe
-----Original Message-----
From: Drew, Ron [mailto:RDrew@B...]
Sent: Wednesday, April 24, 2002 7:14 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
Forget to add that point. After you open the new window, you can update
hidden fields on the window that opened the new one by using something
like this in the new window. In this case the new window City field
will update the opener window City hidden field value. <INPUT size
name="City" onBlur="opener.document.forms[0].City.value = this.value">
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Wednesday, April 24, 2002 1:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Joseph Coppola" <joco@e...>
Subject: [asp_web_howto] Forms on submit open new window????
: I have a form that is filled out by a user, on submit the form runs an
: ASP page that returns matching records based on values in the form.
: This works fine, now I want the ASP page to be displayed in a new
window
: not the existing one... But I cannot figure out how to do it.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't do it with ASP - ASP runs entirely on the *server*.
You need to to use client-side technologies to open new browser windows.
For example you could use javascript to open a new window passing in the
value of the form elements. The new window requests the ASP page passing
the variables as part of the querystring.
If you are only use HTML 4.0 Transitional, then you could also do this
(notice the target attribute)
<form method="post" action="mypage.asp" target="_blank">
</form>
Cheers
Ken
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #6 by "Drew, Ron" <RDrew@B...> on Wed, 24 Apr 2002 10:26:27 -0400
|
|
Depends on what you want to do. You can pass non-hidden fields by using
a request.form in the new window or update hidden fields on the prior
form with what I gave you in the prior response. You can also mix
script as Javascript runs on the client. The way the new window is
opened again depends on what you want to do. You can either open it on
a submit button from a form using the onSubmit that executes a
Javascript to do it, or on any line within the form using the onClick or
onBlur. As an example in my app when a user clicks a "yes" radio button
saying they want a wire transfer of funds, it pops up a window asking
for the bank name, address etc...then comes back to the first window
with the information in hidden fields so when the submit happens it
passes all windows to the database update asp.
Layout what you want to do and how the flow should work first then
decide how to process the flow of information.
Good luck and good programming...
-----Original Message-----
From: Joe Coppola [mailto:joco@e...]
Sent: Wednesday, April 24, 2002 9:29 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
So, in order to pass the values from the form to the new window I have
to use hidden fields?
Also, currently my page starts off with <%Lnaguage=3DVBScript%> but now
I
will need to make a java call, how can I change the script language?
One more thing, do I call the openwindow from the FORM ACTION command to
somewhere else?
Thanks,
Joe
-----Original Message-----
From: Drew, Ron [mailto:RDrew@B...]
Sent: Wednesday, April 24, 2002 7:14 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
Forget to add that point. After you open the new window, you can update
hidden fields on the window that opened the new one by using something
like this in the new window. In this case the new window City field
will update the opener window City hidden field value. <INPUT size=3D20
name=3D"City" onBlur=3D"opener.document.forms[0].City.value =3D
this.value">
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Wednesday, April 24, 2002 1:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Joseph Coppola" <joco@e...>
Subject: [asp_web_howto] Forms on submit open new window????
: I have a form that is filled out by a user, on submit the form runs an
: ASP page that returns matching records based on values in the form.
: This works fine, now I want the ASP page to be displayed in a new
window
: not the existing one... But I cannot figure out how to do it.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't do it with ASP - ASP runs entirely on the *server*.
You need to to use client-side technologies to open new browser windows.
For example you could use javascript to open a new window passing in the
value of the form elements. The new window requests the ASP page passing
the variables as part of the querystring.
If you are only use HTML 4.0 Transitional, then you could also do this
(notice the target attribute)
<form method=3D"post" action=3D"mypage.asp" target=3D"_blank">
</form>
Cheers
Ken
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #7 by "Joe Coppola" <joco@e...> on Wed, 24 Apr 2002 12:50:24 -0400
|
|
Ok here is my code, how do I morify it so instead of calling my ASP page
in the same browser, get it to open a new window. I cant seem to get
that to happen... What am I missing?
Thanks,
Joe
<--------
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<FORM ACTION="testsql.asp" id=form1 name=form1>
<table width="50%" border="1">
<tr>
<td width="37%">Type:
<select name="cmbType">
<option>Family</option>
<option>Kilimanjaro</option>
<option>Wildlife</option>
</select>
</td>
<td width="63%">or Name:
<select name="cmbName">
<option>Kilimanjaro & Wildlife Safari</option>
<option>Serengeti Family Safari</option>
<option>Serengeti & Selous Safari</option>
<option>Affordable Tanzania Family Safari</option>
</select>
</td>
</tr>
<tr>
<td width="37%">Date:
<select name="cmbDate">
<option value="1">January</option>
<option value="2">February</option>
<option value="3">March</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</td>
<td width="63%"> </td>
</tr>
<tr>
<td width="37%">Price:
<select name="cmbPrice">
<option selected>Any</option>
<option>3,500-4,499</option>
<option>4,500-5,499</option>
<option>5,500-7,000</option>
<option>7,000+</option>
</select>
</td>
<td width="63%"> </td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" name="Search" value="Search">
</div>
</td>
</tr>
</table>
</FORM>
</BODY>
</HTML>
------>
-----Original Message-----
From: Drew, Ron [mailto:RDrew@B...]
Sent: Wednesday, April 24, 2002 9:26 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
Depends on what you want to do. You can pass non-hidden fields by using
a request.form in the new window or update hidden fields on the prior
form with what I gave you in the prior response. You can also mix
script as Javascript runs on the client. The way the new window is
opened again depends on what you want to do. You can either open it on
a submit button from a form using the onSubmit that executes a
Javascript to do it, or on any line within the form using the onClick or
onBlur. As an example in my app when a user clicks a "yes" radio button
saying they want a wire transfer of funds, it pops up a window asking
for the bank name, address etc...then comes back to the first window
with the information in hidden fields so when the submit happens it
passes all windows to the database update asp.
Layout what you want to do and how the flow should work first then
decide how to process the flow of information. Good luck and good
programming...
-----Original Message-----
From: Joe Coppola [mailto:joco@e...]
Sent: Wednesday, April 24, 2002 9:29 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
So, in order to pass the values from the form to the new window I have
to use hidden fields?
Also, currently my page starts off with <%Lnaguage=VBScript%> but now I
will need to make a java call, how can I change the script language?
One more thing, do I call the openwindow from the FORM ACTION command to
somewhere else?
Thanks,
Joe
-----Original Message-----
From: Drew, Ron [mailto:RDrew@B...]
Sent: Wednesday, April 24, 2002 7:14 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
Forget to add that point. After you open the new window, you can update
hidden fields on the window that opened the new one by using something
like this in the new window. In this case the new window City field
will update the opener window City hidden field value. <INPUT size
name="City" onBlur="opener.document.forms[0].City.value = this.value">
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Wednesday, April 24, 2002 1:06 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Forms on submit open new window????
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Joseph Coppola" <joco@e...>
Subject: [asp_web_howto] Forms on submit open new window????
: I have a form that is filled out by a user, on submit the form runs an
: ASP page that returns matching records based on values in the form.
: This works fine, now I want the ASP page to be displayed in a new
window
: not the existing one... But I cannot figure out how to do it.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't do it with ASP - ASP runs entirely on the *server*.
You need to to use client-side technologies to open new browser windows.
For example you could use javascript to open a new window passing in the
value of the form elements. The new window requests the ASP page passing
the variables as part of the querystring.
If you are only use HTML 4.0 Transitional, then you could also do this
(notice the target attribute)
<form method="post" action="mypage.asp" target="_blank">
</form>
Cheers
Ken
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #8 by Nikos <pappas@c...> on Thu, 25 Apr 2002 00:55:11 +0300
|
|
Hi there
excuse my question
Why is option value available only oce in the select menus?
Cheers
Nikos
At 07:50 =EC=EC 24/4/2002, you wrote:
>Ok here is my code, how do I morify it so instead of calling my ASP page
>in the same browser, get it to open a new window. I cant seem to get
>that to happen... What am I missing?
>
>Thanks,
>Joe
>
><--------
>
><%@ Language=3DVBScript %>
>
>Type: Family Kilimanjaro Wildlife or Name: Kilimanjaro & Wildlife Safari
>Serengeti Family Safari Serengeti & Selous Safari Affordable Tanzania
>Family Safari
>Date: January February March May June July August September October
>November December
>Price: Any 3,500-4,499 4,500-5,499 5,500-7,000 7,000+
>------>
>-----Original Message-----
>From: Drew, Ron [mailto:RDrew@B...]
>Sent: Wednesday, April 24, 2002 9:26 AM
>To: ASP Web HowTo
>Subject: [asp_web_howto] Re: Forms on submit open new window????
>
>
>Depends on what you want to do. You can pass non-hidden fields by using
>a request.form in the new window or update hidden fields on the prior
>form with what I gave you in the prior response. You can also mix
>script as Javascript runs on the client. The way the new window is
>opened again depends on what you want to do. You can either open it on
>a submit button from a form using the onSubmit that executes a
>Javascript to do it, or on any line within the form using the onClick or
>onBlur. As an example in my app when a user clicks a "yes" radio button
>saying they want a wire transfer of funds, it pops up a window asking
>for the bank name, address etc...then comes back to the first window
>with the information in hidden fields so when the submit happens it
>passes all windows to the database update asp.
>
>Layout what you want to do and how the flow should work first then
>decide how to process the flow of information. Good luck and good
>programming...
>
>
>-----Original Message-----
>From: Joe Coppola [mailto:joco@e...]
>Sent: Wednesday, April 24, 2002 9:29 AM
>To: ASP Web HowTo
>Subject: [asp_web_howto] Re: Forms on submit open new window????
>
>
>So, in order to pass the values from the form to the new window I have
>to use hidden fields?
>
>
>Also, currently my page starts off with <%Lnaguage=3DVBScript%> but now I
>will need to make a java call, how can I change the script language?
>
>One more thing, do I call the openwindow from the FORM ACTION command to
>somewhere else?
>
>
>Thanks,
>Joe
>
>-----Original Message-----
>From: Drew, Ron [mailto:RDrew@B...]
>Sent: Wednesday, April 24, 2002 7:14 AM
>To: ASP Web HowTo
>Subject: [asp_web_howto] Re: Forms on submit open new window????
>
>
>Forget to add that point. After you open the new window, you can update
>hidden fields on the window that opened the new one by using something
>like this in the new window. In this case the new window City field
>will update the opener window City hidden field value. <INPUT size=3D20
>name=3D"City" onBlur=3D"opener.document.forms[0].City.value =3D
this.value">
>
>-----Original Message-----
>From: Ken Schaefer [mailto:ken@a...]
>Sent: Wednesday, April 24, 2002 1:06 AM
>To: ASP Web HowTo
>Subject: [asp_web_howto] Re: Forms on submit open new window????
>
>
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>From: "Joseph Coppola" <joco@e...>
>Subject: [asp_web_howto] Forms on submit open new window????
>
>
>: I have a form that is filled out by a user, on submit the form runs an
>: ASP page that returns matching records based on values in the form.
>: This works fine, now I want the ASP page to be displayed in a new
>window
>: not the existing one... But I cannot figure out how to do it.
>
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
>You can't do it with ASP - ASP runs entirely on the *server*.
>
>You need to to use client-side technologies to open new browser windows.
>For example you could use javascript to open a new window passing in the
>value of the form elements. The new window requests the ASP page passing
>the variables as part of the querystring.
>
>If you are only use HTML 4.0 Transitional, then you could also do this
>(notice the target attribute)
>
><form method=3D"post" action=3D"mypage.asp" target=3D"_blank">
>
></form>
>
>Cheers
>Ken
>
>
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramme
>r-20
>
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramme
>r-20
>
>
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramme
>r-20
>
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramme
>r-20
>
>
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramme
>r-20
|
|
 |