Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

difference between asp dundas on sever2003 and winxp

Status
Not open for further replies.

goaganesha

Programmer
Dec 4, 2001
178
0
0
BE
Hi There,

Here is something that's way to weird for me to understand. I have a form for an emailtool on the website. I'm using dundas aspmail and upload component. Here on my local pc (iis on winxp) the whole thing works fine. As soon as I upload the page to a windows2003 server the weirdest things happen:
I test checkboxes with isEmpty like in this example:
Code:
Set objUpload = Server.CreateObject("Dundas.Upload")
if isEmpty(objUpload.Form("check_po")) then
response.write("empty")
else
response.write("checked")
end if
On my local pc empty checkboxes give "empty" but on the server they give "checked"
Also the isEmpty is the only way to do the test on the remote server. using:
Code:
if objUpload.Form("check_po") ="on" then
...
will give an http500 error while on my local pc this works fine.

Does anyone have an idea what could be wrong 'cause It's freaking me out.

regards, ganesha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top