I have a test program that is using a .dll i created. it works find when i access it form the program, like so:
Dim IE As HTMLParser.IE
Set IE = CreateObject("HTMLParser.IE"
txtResults.Text = IE.GetRequest(testvalue, testvalue)
This works find and puts the results in a textbox. Now, when I try to use the .dll from a webpage using jscript, i get the error "Object variable or With block variable not set" using the code below..
var IE = Server.CreateObject("HTMLParser.IE"
var result = IE.GetRequest(testvalue,testvalue);
what the heck am i doing wrong?
Dim IE As HTMLParser.IE
Set IE = CreateObject("HTMLParser.IE"
txtResults.Text = IE.GetRequest(testvalue, testvalue)
This works find and puts the results in a textbox. Now, when I try to use the .dll from a webpage using jscript, i get the error "Object variable or With block variable not set" using the code below..
var IE = Server.CreateObject("HTMLParser.IE"
var result = IE.GetRequest(testvalue,testvalue);
what the heck am i doing wrong?