Search:
Type: Posts; User: buntine
Search :
Search took 0.10 seconds.
The majority of the year is fairly hot in parts of Australia. Summer is from December to February.
It was 31 degrees (celsius) at 3am here last Friday. :p
It's been so long since I've done this, so I am doing little more than having an educated guess here.
Try modifying the RecordSet open method call to use the adOpenStatic cursor:
...
Whoa! Nice pics.
In Australia, it's summer. It hit 45.8 degrees Celsius (115 Fahrenheit!!) last week!
Hey yo. This will actually return the local IP of the server that is accepting the request.
REMOTE_ADDR is the correct server variable, but unfortunately you can only access the values that were...
It was written in ASP. Unfortunately, I wrote it years ago in a previous position. I no longer have access to the code.
You can open an Excel Spreadsheet like you would a database and iterate over...
The ID field in your database should really be controlled by an incrementing primary key. This is much easier than trying to keep integrity programmatically.
Cheers.
The article was correct.
Prefixing the path with a forward slash will force it to be explicit. That is, starting from the root directory of your website as configured in your web server.
Make...
heh No problems.
I have a good relationship with my designer (I even lived with him at one point) and he charges me a very good hourly rate.
If I just charged the client my normal hourly rate,...
Yes, the client pays for the service. Thats the way commerce works.
I do it:
1) Takes longer
2) Costs more (I am more expensive)
3) I get bored.
4) Quality goes down.
5) I get behind in...
Yes, this is possible. I have done something similar for a client in the past.
The file is uploaded, you then parse it and extract the data you want programmatically (there is a library available...
I really have had several clients ask me that. It was really funny the first time. :p
The client *is* purchasing my time. I am presenting a virtual image to my client. They never need to see my graphic designer or HTML hacker.
I don't necessarily think HTML/CSS would not be...
If you want this functionality from the front-end ("prior to pressing submit"), you should look into doing it with JavaScript.
Ideally, for sensitive data, you want validation on both the...
On the rendered page, what is the contents of the iframes src attribute? View the source.
Yeah, thats right. The parent page will have access to the local variables of the include.
You don't really need to iterate through the recordst like that. You should really just be returning the...
You *could* do anything. But, nope, I highly doubt it would be more profitable.
If you try to do everything yourself, you will notice that:
1) You aren't as smart as you thought you were. Your...
I'm sure you could make a living from it if you invested more time and thought into the process than I do.
Freelance work is generally something I do when I: a) Have enough free time to do it; b)...
I think the majority of us full-time developers normally try and squeeze some freelance in on the side.
My main point of advice is always to know your boundaries and make sure you have great...
The includes won't allow you to pass querystring arguments to them as they are not full HTTP requests.
The contents of the files will be physically merged into the resulting response, therefore...
Just call "execute" function on your ADO database connection object. :)
The UPDATE statement does not return a recordset, therefore you don't need an ADO RecordSet object.
Cheers.
Yeah, this is totally possible. Exactly how you achieve this is based on which technologies you are using, etc.
Theoretically, if your database is setup to ensure users names are unique (which...
I know very well what SFTP is. I have written large wrappers for SFTP.
I am, however, skeptical that YOU know what it is... SFTP is not at all FTP. It is implemented using SSH.
1) Totally unencrypted and insecure
2) Totally blind and without integrity. Files are not verified on the receiving end (checksums, etc). If data is lost during transit, you will not know.
3)...
That is pretty standard from any platform. Infact, simply uploading via an ancient protocol like FTP on every save is potentially sloppy and inhibiting. I can think of a few ways to match or exceed...
Whoa, whoa! You and I are going to have to disagree here, Jeff. Nothing is faster and more proficient than working directly from a terminal!
WebNerd, I use Vim for ALL of my development and text...