Search:
Type: Posts; User: vanny
Search :
Search took 0.01 seconds.
Hi all,
I have a client who is performing a small hardware upgrade and splitting out there IIS and Databases to different servers.
The problem I am having is I cannot access the databases over...
Hi All,
I am working on an application that is classic ASP/MS Access.
The client is looking to replace Access as the database, so I am looking for recommendation that should be able to help...
I may not have, any where you can point me for what to look for, at the moment I am just using response.write for the result.
Hi All,
I am doing some cross domain processing, and am running into a problem with getting no return string.
The data gets posted correctly to my legacy ASP script, however the response comes...
Hi all,
I have this cross domain problem, and am wondering if anyone could point me to a starting point.
I want to be able to submit data to an Classic ASP page, that will then pass all the...
Hi All,
I am having a mental blank today. But basically I want to have a DIV popup in the middle of the screen. Not the page, so no matter how far down the extremely long page they scroll the div...
I use ecom for my software, not really shopping cart type,
But I have interfaced to securepay (www.securepay.com.au) using the com object and find it very good.
Im not even sure if this the the right place, but I am looking for some tips/references on how to build the follow.
A COM object (dll) that can be run on any IIS Computer and reference on there...
How many pages are passing to the script that you need to validate that it is ligitamite link, as you would only need to add the date/time to this.
Personally, I recommend using some basic...
Is it possible to dynamically create variable as required.
The reason I would like to know this is becuase I am working in a PDF tool, and have to apply the same image(s) multiple times.
Now if...
Basically (i hope if have this correct otherwise i will get crucified on the forum) it works as when you submit a form (post or get) this information is passed in via paired values.
for example,...
What about passing a date/time stamp in the querystring to the page, from the previous page.
At the start of the create page, check if the date/time stamp is in a reasonable range (say 20...
Ok.
From what I can see you have this in the processing ASP
myRS("tablenumber") = Request.Form("tablenumber")
And this in the form
<select name="table numbers">
What did the response.write request("table numbers") return, was there any value in there.
Also can you please show me the code you are using in the FORM tag, at you using method=get or method=post
There are two things I would check.
One that the space in table numbers, is not creating an issues. try a response.write request("table numbers") and see what it is retruning.
I would also...
Ok I have had a look at the site, but am not sure where you are referring to with the send message.
Can you paste the offending code in here?
Let me try and get this straight.
You are trying...
Sorry, Im not even sure what you are trying to achieve.
Is there a more detailed brief.
Are you trying to create a mailto link that populates the email or are you trying to submit the form when...
Thanks.
I just worked it out, I didnt realise your could return an enrite object in a JS functions.
function fCreateXML()
{
var request = false;
try {
Ok heres my problem (i must admit im having a dumb day).
I would like to know if it is possible (and how) to get a assign the XML object to a variable via a function.
Here is my case, I have a...
You will need to attach or insert the code.
ASP is a server side technology, that does processing that we (clients) cannot see, so looking at the source will only give us a limited view of what is...
Just a quick question. What is the possibility of the use refreshing the page above and re processing there request or if on the confirmation "newpage.asp" pressing back and re running the script.
I find generally well written client side validation is enough to reduce 99% of user data errors.
If you are concerned about someone saving the source, removing your validation and then submitting...
Ok here is how I would look at solving this problem. You have already identified that cookies and tracking IP address wont work (for good reason).
If you are sending out invites to see the page...
You need to test if each of the extra contacts has a value in it. Try something similar to the below. You may need to check syntax
If NOT rs.eof Then
Do Until rs.eof
contact1 =...
Hi, I am looking for some guidance here.
I am writing a new application, that will in the future possible suffer at times heavy load, and relies on a third party API to interface with another...