Forum: ASP Oct 13th, 2004 |
| Replies: 14 Views: 6,629 You are right AwS ... How silly of me.... I have just always had it available to me... I take back my comment which was founded on nothing but my own prejudgement. |
Forum: ASP Jul 20th, 2004 |
| Replies: 2 Views: 4,678 You should use response.write Server.URLEncode(URLQuerystring) to produce the URL querystring....
This will encode the + sign in a way that is retreivable. |
Forum: ASP Jul 16th, 2004 |
| Replies: 7 Views: 7,252 |
Forum: ASP Jul 15th, 2004 |
| Replies: 1 Views: 10,012 Ok.... not wanting to reinvent the wheel here, could i just point you to this webpage:-
http://www.aspwebpro.com/aspscripts/forms/formtodatabase.asp
That has all you need. |
Forum: ASP Jul 14th, 2004 |
| Replies: 3 Views: 3,403 what exactly is wrong here? |
Forum: ASP Jul 14th, 2004 |
| Replies: 7 Views: 7,252 Actually, when encoding entire directories, use the /xl switch... this stops the encoder from adding the language directive.
You can then add it in manually for non-includes. |
Forum: ASP Jul 14th, 2004 |
| Replies: 7 Views: 7,252 I think you can strip the language directive on the includes (after encoding). |
Forum: ASP Jul 14th, 2004 |
| Replies: 6 Views: 13,335 Thats a weird error to get for a permissions error... normally the error you get is this:-
Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only
OR
Microsoft... |
Forum: ASP Jul 13th, 2004 |
| Replies: 3 Views: 8,443 you need to attach the debugger to the IIS process.
When an error occurs, it will break at the statement inside the debugger.
Dont ask me why, and I know this is a pain, but hey!! |
Forum: ASP Jul 13th, 2004 |
| Replies: 1 Views: 9,900 Have you set up SMTP service to route the mail?
If not, obtain the ip address of your ISP's SMTP server.
open IIS admin control and right click the default smtp server.
On the delivery tab,... |
Forum: ASP Jul 13th, 2004 |
| Replies: 1 Views: 23,170 I always use these 2 functions:-Sub ForceDownload(strFilePath)
Set oFS = Server.CreateObject("Scripting.FileSystemObject")
Set oFile = oFS.GetFile(strFilePath)
StrFileSize = oFile.Size
Set... |
Forum: ASP Jul 13th, 2004 |
| Replies: 3 Views: 8,242 maybe try this:-strPost = "<command><login>" _
& "<user>username</user>" _
& "<pass>password>/pass>" _
& "</login></command>"
Set objHTTP =... |
Forum: ASP Jul 13th, 2004 |
| Replies: 1 Views: 4,528 you need to use the command timeout in your connection string as well as the internettimeout property
something like this: RDSControl.Server = "http://yourdomain"
RDSControl.InternetTimeout =... |
Forum: ASP Jul 13th, 2004 |
| Replies: 4 Views: 4,985 Actually, client side validation is a nice thing to use, but should NEVER be relied upon.
Consider those that have JavaScript turned off!! How will you validate then?
I always handle... |
Forum: ASP Jul 13th, 2004 |
| Replies: 3 Views: 5,414 Hi,
You are talking about a client side function of the browser software.
ASP, and in fact all server side languages can effect no change in client side behaviours, and hence, you are a little... |
Forum: ASP Jul 13th, 2004 |
| Replies: 2 Views: 8,386 LMAO..... how many of us fell into this trap at the beginning? We were prolly just as confused as this guy! |
Forum: ASP Jul 13th, 2004 |
| Replies: 3 Views: 3,552 Actually, it's a string value, and so is everything send via an HTTP GET or POST.
It is up to you, the developer to cast the strings to explicit types.
You must assign the value of the posted... |
Forum: ASP Jul 13th, 2004 |
| Replies: 14 Views: 6,629 MySQL will happily work with ASP, which is why microsoft bundles the driver by default.
For a list of connection strings including one for mySql, see this thread:-... |
Forum: ASP Jul 13th, 2004 |
| Replies: 2 Views: 4,088 I presume you included adovbs.inc ?
You need that file to use the named ADO constants |
Forum: ASP Jul 13th, 2004 |
| Replies: 1 Views: 4,776 You could use this:-<HTML>
<HEAD><TITLE>My Frame Page</TITLE></HEAD>
<frameset rows="100,*" border="1">
<frame src="menu.htm" name="One" scrolling="auto"
marginwidth="0" marginheight="0"... |
Forum: ASP Jul 13th, 2004 |
| Replies: 2 Views: 8,235 if you need it to work the way you describe, you can enable parent paths in IIS admin console. |
Forum: ASP Jul 13th, 2004 |
| Replies: 2 Views: 7,945 You would need to convert the excel document to pull it's values from a database (access). You could then write a standard form which will show the data, and allow users to change the values etc. ... |
Forum: ASP Jul 13th, 2004 |
| Replies: 7 Views: 7,252 remove the @language directive if you are using vbscript. |
Forum: ASP Jul 13th, 2004 |
| Replies: 6 Views: 13,335 I think if you posted the fields in your DB, along with their TYPE and your ASP code, we'll wrap this up in no time. |