faqts : Computers : Programming : Languages : JavaScript : Forms

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

4 of 7 people (57%) answered Yes
Recently 1 of 2 people (50%) answered Yes

Entry

How to build standalone IE5 application that can capture GET method variables without the need of a local web server ?

Aug 30th, 2000 07:56
Martin Honnen, James Wong,


For me with IE5 it works to use file: urls with a query string e.g.
  location.href = 'file://C:/dir/whatever.html?var1=val1&var2=val2';
and then to read
  location.search
to parse out the variables and their values as shown in
http://www.faqts.com/knowledge-base/view.phtml/aid/969/fid/129