|
 |
asp_web_howto thread: Can ASP do this?
Message #1 by Mike Zhang <Mike.Zhang@b...> on Thu, 24 Oct 2002 17:03:22 +1300
|
|
Hi, group
Basically what I am trying to achieve is this: when I place an on-line
order, I also want to save the data to my own database when I submit my
order.
I am considering to use ASP page to do it:
1. create 2 frames: one for my own, another linked to the shopping
website page
2. after I type items and quantities in the shopping page, I use a
button in my frame to submit the form in the other
3. at the same time, I catch the data entered in the shopping page
and save it to my database.
As I am new to ASP, I am not sure if this is achievable or not? Or is there
any other way to do it?
Thanks for your help in advance.
Mike
This email message and any attached files may contain confidential information which may be subject to privilege. If you receive
this and are not the intended recipient, you must not peruse, use, disseminate, distribute or copy this message. If you receive
this message in error please contact the writer immediately. The views expressed in this email are those of the writer and not
necessarily those of the company. If you are the recipient of this email you may not republish in any way unless with the
permission of the writer.
Thank you.
Message #2 by "Ken Schaefer" <ken@a...> on Mon, 28 Oct 2002 16:19:04 +1100
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Can ASP do this?
: Basically what I am trying to achieve is this: when I place an on-line
: order, I also want to save the data to my own database when I submit my
: order.
:
: I am considering to use ASP page to do it:
: 1. create 2 frames: one for my own, another linked to the shopping
: website page
: 2. after I type items and quantities in the shopping page, I use a
: button in my frame to submit the form in the other
: 3. at the same time, I catch the data entered in the shopping page
: and save it to my database.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't have the browser submit the data to two different pages (one on
your server, and one on the remote server). You could submit the data to
your server, then use a server-side component to simulate a browser post to
the remote server, but then you'd have to intepret the remote server's
response to display this to the user.
Cheers
Ken
Message #3 by "Tim Morford" <tmorford@n...> on Mon, 28 Oct 2002 12:06:27 -0500
|
|
Well it depends on the way the company that you are sending the order to
wants the data. You can do this:
insert the order in to the DB then server.transfer then send the data to
the other server.
OR
hold all values in a session, then server.transfer, see if the other server
ok'ed the order then insert them in the DB with a Yea or Nea Code.
--
Tim Morford
http://www.speaking-of.net
http://www.aspalliance.com/tmorford
-----Original Message-----
From: Mike Zhang [mailto:Mike.Zhang@b...]
Sent: Thursday, October 24, 2002 12:03 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Can ASP do this?
Hi, group
Basically what I am trying to achieve is this: when I place an on-line
order, I also want to save the data to my own database when I submit my
order.
I am considering to use ASP page to do it:
1. create 2 frames: one for my own, another linked to the shopping
website page
2. after I type items and quantities in the shopping page, I use a
button in my frame to submit the form in the other
3. at the same time, I catch the data entered in the shopping page
and save it to my database.
As I am new to ASP, I am not sure if this is achievable or not? Or is there
any other way to do it?
Thanks for your help in advance.
Mike
This email message and any attached files may contain confidential
information which may be subject to privilege. If you receive this and are
not the intended recipient, you must not peruse, use, disseminate,
distribute or copy this message. If you receive this message in error
please contact the writer immediately. The views expressed in this email
are those of the writer and not necessarily those of the company. If you
are the recipient of this email you may not republish in any way unless with
the permission of the writer.
Thank you.
---
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
---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/02
Message #4 by Mike Zhang <Mike.Zhang@b...> on Tue, 29 Oct 2002 10:27:20 +1300
|
|
Hi, Ken
Does it mean that there is no way to access or control the objects in the
linked web page within my frame? So I can't use my own code to read the data
I enter in the shopping page? And I can't use my own code to submit info
unless I click the submit button in that page?
Cheers
Mike
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Monday, 28 October 2002 6:19 p.m.
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Can ASP do this?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Can ASP do this?
: Basically what I am trying to achieve is this: when I place an on-line
: order, I also want to save the data to my own database when I submit my
: order.
:
: I am considering to use ASP page to do it:
: 1. create 2 frames: one for my own, another linked to the shopping
: website page
: 2. after I type items and quantities in the shopping page, I use a
: button in my frame to submit the form in the other
: 3. at the same time, I catch the data entered in the shopping page
: and save it to my database.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can't have the browser submit the data to two different pages (one on
your server, and one on the remote server). You could submit the data to
your server, then use a server-side component to simulate a browser post to
the remote server, but then you'd have to intepret the remote server's
response to display this to the user.
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
This email message and any attached files may contain confidential information which may be subject to privilege. If you receive
this and are not the intended recipient, you must not peruse, use, disseminate, distribute or copy this message. If you receive
this message in error please contact the writer immediately. The views expressed in this email are those of the writer and not
necessarily those of the company. If you are the recipient of this email you may not republish in any way unless with the
permission of the writer.
Thank you.
Message #5 by "Ken Schaefer" <ken@a...> on Tue, 29 Oct 2002 11:26:48 +1100
|
|
Server.Transfer only works on local files.
You can't "Server.Transfer" to a remote host, since your server does not
have access to the ASP source code of the remote page.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Tim Morford" <tmorford@n...>
Subject: [asp_web_howto] RE: Can ASP do this?
: Well it depends on the way the company that you are sending the order to
: wants the data. You can do this:
:
: insert the order in to the DB then server.transfer then send the data to
: the other server.
: OR
: hold all values in a session, then server.transfer, see if the other
server
: ok'ed the order then insert them in the DB with a Yea or Nea Code.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #6 by "Ken Schaefer" <ken@a...> on Tue, 29 Oct 2002 11:30:25 +1100
|
|
I think you need to read up a little bit on the limits of HTTP, and HTML.
Your question doesn't have anything to do with ASP per se, but rather with
how a browser interacts with the server. What you want to do is possible,
but usually isn't allowed by the browser because it is a security problem
(cross-domain-information disclosure) - for example you could create an
invisible frame, and then trick someone to visiting your site. You then take
them to Amazon.com, and steal all their details while they do some shopping.
Such things are not allowed by most browser manufacturers.
So, you can frame another site in another domain, but a page on your site
can not access the form elements via javascript. Now, you can post the data
to your server, or you can post the data to the remote server, but the
browser is only going to post the data to a single server (that's the way a
browser works).
If you post the data to the remote server, you can't get it (obviously). If
you post the data to your server, then you need to "simulate", via a
server-side component, a browser submit to the remote server, and intepret
the remote server's response, and send it back to the browser (ie just like
you are a "man-in-the-middle"
It is also possible that I'm not understanding what you want to do. If you
think that I'm missing the point, then please feel free to correct me!
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Re: Can ASP do this?
: Hi, Ken
:
: Does it mean that there is no way to access or control the objects in the
: linked web page within my frame? So I can't use my own code to read the
data
: I enter in the shopping page? And I can't use my own code to submit info
: unless I click the submit button in that page?
:
: Cheers
:
: Mike
:
: -----Original Message-----
: From: Ken Schaefer [mailto:ken@a...]
: Sent: Monday, 28 October 2002 6:19 p.m.
: To: ASP Web HowTo
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: "Mike Zhang" <Mike.Zhang@b...>
: Subject: [asp_web_howto] Can ASP do this?
:
:
: : Basically what I am trying to achieve is this: when I place an on-line
: : order, I also want to save the data to my own database when I submit my
: : order.
: :
: : I am considering to use ASP page to do it:
: : 1. create 2 frames: one for my own, another linked to the shopping
: : website page
: : 2. after I type items and quantities in the shopping page, I use a
: : button in my frame to submit the form in the other
: : 3. at the same time, I catch the data entered in the shopping page
: : and save it to my database.
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:
: You can't have the browser submit the data to two different pages (one on
: your server, and one on the remote server). You could submit the data to
: your server, then use a server-side component to simulate a browser post
to
: the remote server, but then you'd have to intepret the remote server's
: response to display this to the user.
Message #7 by Mike Zhang <Mike.Zhang@b...> on Wed, 30 Oct 2002 09:29:23 +1300
|
|
I am really new to ASP and DHTML, but amazed about their object structure
like window, frame, form,...etc. I was thinking that if we could use code to
read the data we put in other site's page, it would save us time and effort
to print or copy data. That would save more if it could apply to business.
Mike
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Tuesday, 29 October 2002 1:30 p.m.
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Can ASP do this?
I think you need to read up a little bit on the limits of HTTP, and HTML.
Your question doesn't have anything to do with ASP per se, but rather with
how a browser interacts with the server. What you want to do is possible,
but usually isn't allowed by the browser because it is a security problem
(cross-domain-information disclosure) - for example you could create an
invisible frame, and then trick someone to visiting your site. You then take
them to Amazon.com, and steal all their details while they do some shopping.
Such things are not allowed by most browser manufacturers.
So, you can frame another site in another domain, but a page on your site
can not access the form elements via javascript. Now, you can post the data
to your server, or you can post the data to the remote server, but the
browser is only going to post the data to a single server (that's the way a
browser works).
If you post the data to the remote server, you can't get it (obviously). If
you post the data to your server, then you need to "simulate", via a
server-side component, a browser submit to the remote server, and intepret
the remote server's response, and send it back to the browser (ie just like
you are a "man-in-the-middle"
It is also possible that I'm not understanding what you want to do. If you
think that I'm missing the point, then please feel free to correct me!
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Re: Can ASP do this?
: Hi, Ken
:
: Does it mean that there is no way to access or control the objects in the
: linked web page within my frame? So I can't use my own code to read the
data
: I enter in the shopping page? And I can't use my own code to submit info
: unless I click the submit button in that page?
:
: Cheers
:
: Mike
:
: -----Original Message-----
: From: Ken Schaefer [mailto:ken@a...]
: Sent: Monday, 28 October 2002 6:19 p.m.
: To: ASP Web HowTo
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: "Mike Zhang" <Mike.Zhang@b...>
: Subject: [asp_web_howto] Can ASP do this?
:
:
: : Basically what I am trying to achieve is this: when I place an on-line
: : order, I also want to save the data to my own database when I submit my
: : order.
: :
: : I am considering to use ASP page to do it:
: : 1. create 2 frames: one for my own, another linked to the shopping
: : website page
: : 2. after I type items and quantities in the shopping page, I use a
: : button in my frame to submit the form in the other
: : 3. at the same time, I catch the data entered in the shopping page
: : and save it to my database.
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:
: You can't have the browser submit the data to two different pages (one on
: your server, and one on the remote server). You could submit the data to
: your server, then use a server-side component to simulate a browser post
to
: the remote server, but then you'd have to intepret the remote server's
: response to display this to the user.
---
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
This email message and any attached files may contain confidential information which may be subject to privilege. If you receive
this and are not the intended recipient, you must not peruse, use, disseminate, distribute or copy this message. If you receive
this message in error please contact the writer immediately. The views expressed in this email are those of the writer and not
necessarily those of the company. If you are the recipient of this email you may not republish in any way unless with the
permission of the writer.
Thank you.
Message #8 by "Ken Schaefer" <ken@a...> on Wed, 30 Oct 2002 11:51:55 +1100
|
|
It's a huge security hole to allow what you want.
Next time you go to a shopping website, and put your credit card details in,
how do you know that you are only sending it to the shopping site? How do
you know that I'm not 'stealing' the details as well to store in my own
database, so that I can go an buy things using your credit card?!?
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Re: Can ASP do this?
: I am really new to ASP and DHTML, but amazed about their object structure
: like window, frame, form,...etc. I was thinking that if we could use code
to
: read the data we put in other site's page, it would save us time and
effort
: to print or copy data. That would save more if it could apply to business.
:
: Mike
:
: -----Original Message-----
: From: Ken Schaefer [mailto:ken@a...]
: Sent: Tuesday, 29 October 2002 1:30 p.m.
: To: ASP Web HowTo
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: I think you need to read up a little bit on the limits of HTTP, and HTML.
:
: Your question doesn't have anything to do with ASP per se, but rather with
: how a browser interacts with the server. What you want to do is possible,
: but usually isn't allowed by the browser because it is a security problem
: (cross-domain-information disclosure) - for example you could create an
: invisible frame, and then trick someone to visiting your site. You then
take
: them to Amazon.com, and steal all their details while they do some
shopping.
: Such things are not allowed by most browser manufacturers.
:
: So, you can frame another site in another domain, but a page on your site
: can not access the form elements via javascript. Now, you can post the
data
: to your server, or you can post the data to the remote server, but the
: browser is only going to post the data to a single server (that's the way
a
: browser works).
:
: If you post the data to the remote server, you can't get it (obviously).
If
: you post the data to your server, then you need to "simulate", via a
: server-side component, a browser submit to the remote server, and intepret
: the remote server's response, and send it back to the browser (ie just
like
: you are a "man-in-the-middle"
:
: It is also possible that I'm not understanding what you want to do. If you
: think that I'm missing the point, then please feel free to correct me!
:
: Cheers
: Ken
:
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: "Mike Zhang" <Mike.Zhang@b...>
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: : Hi, Ken
: :
: : Does it mean that there is no way to access or control the objects in
the
: : linked web page within my frame? So I can't use my own code to read the
: data
: : I enter in the shopping page? And I can't use my own code to submit info
: : unless I click the submit button in that page?
: :
: : Cheers
: :
: : Mike
: :
: : -----Original Message-----
: : From: Ken Schaefer [mailto:ken@a...]
: : Sent: Monday, 28 October 2002 6:19 p.m.
: : To: ASP Web HowTo
: : Subject: [asp_web_howto] Re: Can ASP do this?
: :
: :
: : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: : From: "Mike Zhang" <Mike.Zhang@b...>
: : Subject: [asp_web_howto] Can ASP do this?
: :
: :
: : : Basically what I am trying to achieve is this: when I place an on-line
: : : order, I also want to save the data to my own database when I submit
my
: : : order.
: : :
: : : I am considering to use ASP page to do it:
: : : 1. create 2 frames: one for my own, another linked to the shopping
: : : website page
: : : 2. after I type items and quantities in the shopping page, I use a
: : : button in my frame to submit the form in the other
: : : 3. at the same time, I catch the data entered in the shopping page
: : : and save it to my database.
: : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: :
: : You can't have the browser submit the data to two different pages (one
on
: : your server, and one on the remote server). You could submit the data to
: : your server, then use a server-side component to simulate a browser post
: to
: : the remote server, but then you'd have to intepret the remote server's
: : response to display this to the user.
:
:
:
: ---
:
: 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
:
: This email message and any attached files may contain confidential
information which may be subject to privilege. If you receive this and are
not the intended recipient, you must not peruse, use, disseminate,
distribute or copy this message. If you receive this message in error
please contact the writer immediately. The views expressed in this email
are those of the writer and not necessarily those of the company. If you
are the recipient of this email you may not republish in any way unless with
the permission of the writer.
: Thank you.
:
:
: ---
:
: 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 #9 by Mike Zhang <Mike.Zhang@b...> on Wed, 30 Oct 2002 16:11:44 +1300
|
|
I could tell from the address I am browsing, couldn't I? If the shopping
page is under other's site, I won't put any order.
Anyway, what I was thinking about seems impossible according to you. But I
still feel that there must be someway to catch the data as they are in our
browser, and in our computer, somehow, we could use code to read it and save
it.
Thanks a lot
Mike
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Wednesday, 30 October 2002 1:52 p.m.
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Can ASP do this?
It's a huge security hole to allow what you want.
Next time you go to a shopping website, and put your credit card details in,
how do you know that you are only sending it to the shopping site? How do
you know that I'm not 'stealing' the details as well to store in my own
database, so that I can go an buy things using your credit card?!?
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Re: Can ASP do this?
: I am really new to ASP and DHTML, but amazed about their object structure
: like window, frame, form,...etc. I was thinking that if we could use code
to
: read the data we put in other site's page, it would save us time and
effort
: to print or copy data. That would save more if it could apply to business.
:
: Mike
:
: -----Original Message-----
: From: Ken Schaefer [mailto:ken@a...]
: Sent: Tuesday, 29 October 2002 1:30 p.m.
: To: ASP Web HowTo
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: I think you need to read up a little bit on the limits of HTTP, and HTML.
:
: Your question doesn't have anything to do with ASP per se, but rather with
: how a browser interacts with the server. What you want to do is possible,
: but usually isn't allowed by the browser because it is a security problem
: (cross-domain-information disclosure) - for example you could create an
: invisible frame, and then trick someone to visiting your site. You then
take
: them to Amazon.com, and steal all their details while they do some
shopping.
: Such things are not allowed by most browser manufacturers.
:
: So, you can frame another site in another domain, but a page on your site
: can not access the form elements via javascript. Now, you can post the
data
: to your server, or you can post the data to the remote server, but the
: browser is only going to post the data to a single server (that's the way
a
: browser works).
:
: If you post the data to the remote server, you can't get it (obviously).
If
: you post the data to your server, then you need to "simulate", via a
: server-side component, a browser submit to the remote server, and intepret
: the remote server's response, and send it back to the browser (ie just
like
: you are a "man-in-the-middle"
:
: It is also possible that I'm not understanding what you want to do. If you
: think that I'm missing the point, then please feel free to correct me!
:
: Cheers
: Ken
:
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: "Mike Zhang" <Mike.Zhang@b...>
: Subject: [asp_web_howto] Re: Can ASP do this?
:
:
: : Hi, Ken
: :
: : Does it mean that there is no way to access or control the objects in
the
: : linked web page within my frame? So I can't use my own code to read the
: data
: : I enter in the shopping page? And I can't use my own code to submit info
: : unless I click the submit button in that page?
: :
: : Cheers
: :
: : Mike
: :
: : -----Original Message-----
: : From: Ken Schaefer [mailto:ken@a...]
: : Sent: Monday, 28 October 2002 6:19 p.m.
: : To: ASP Web HowTo
: : Subject: [asp_web_howto] Re: Can ASP do this?
: :
: :
: : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: : From: "Mike Zhang" <Mike.Zhang@b...>
: : Subject: [asp_web_howto] Can ASP do this?
: :
: :
: : : Basically what I am trying to achieve is this: when I place an on-line
: : : order, I also want to save the data to my own database when I submit
my
: : : order.
: : :
: : : I am considering to use ASP page to do it:
: : : 1. create 2 frames: one for my own, another linked to the shopping
: : : website page
: : : 2. after I type items and quantities in the shopping page, I use a
: : : button in my frame to submit the form in the other
: : : 3. at the same time, I catch the data entered in the shopping page
: : : and save it to my database.
: : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: :
: : You can't have the browser submit the data to two different pages (one
on
: : your server, and one on the remote server). You could submit the data to
: : your server, then use a server-side component to simulate a browser post
: to
: : the remote server, but then you'd have to intepret the remote server's
: : response to display this to the user.
:
:
:
: ---
:
: 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
:
: This email message and any attached files may contain confidential
information which may be subject to privilege. If you receive this and are
not the intended recipient, you must not peruse, use, disseminate,
distribute or copy this message. If you receive this message in error
please contact the writer immediately. The views expressed in this email
are those of the writer and not necessarily those of the company. If you
are the recipient of this email you may not republish in any way unless with
the permission of the writer.
: Thank you.
:
:
: ---
:
: 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
This email message and any attached files may contain confidential information which may be subject to privilege. If you receive
this and are not the intended recipient, you must not peruse, use, disseminate, distribute or copy this message. If you receive
this message in error please contact the writer immediately. The views expressed in this email are those of the writer and not
necessarily those of the company. If you are the recipient of this email you may not republish in any way unless with the
permission of the writer.
Thank you.
Message #10 by "Ken Schaefer" <ken@a...> on Wed, 30 Oct 2002 16:41:20 +1100
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Mike Zhang" <Mike.Zhang@b...>
Subject: [asp_web_howto] Re: Can ASP do this?
: I could tell from the address I am browsing, couldn't I? If the shopping
: page is under other's site, I won't put any order.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
But what about normal people - they don't know the difference. Suppose I
have a site called:
WWW.AMAZ0N.COM
some people aren't smart enough to realise that the O is actually a 0, or
www.paypaI.com (can you see I typed a capital i rather than an l?)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: Anyway, what I was thinking about seems impossible according to you. But
I
: still feel that there must be someway to catch the data as they are in our
: browser, and in our computer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
No, they are just at your site, which is on your server...they are using
*their* computer, and *their* browser. Now, Internet Explorer has various
security zones. If your site is in trusted zone, or the intranet zone, then
you might be able to do what you want, because sites in those zones have
greater permissions.
But if you are just www.yourcompany.com and you frame
www.someothercompany.com, and I'm just a casual visitor to your site, you
can't steal the data that I'm inserting into www.someothercompany.com
As I said before, I may be missing the point of what you are trying to do.
You think it should be possible, but you haven't explained *why* you think
it should be possible (eg that both sites are in the company's internal
network). You haven't addressed the security concerns that I have raised. If
you can't tell me how your setup addresses those security concerns, I can't
really suggest anything...
Cheers
Ken
|
|
 |