What are you asking for help on? If you want to see the actual data going across the wire for testing purposes, use a sniffer (wireshark), a proxy tool (ie, Fiddler), or something like Firebug. If...
It looks like you want to parse each row of a log file that has 8 sections of data. The problem is with the way you've built this code you'll never get more...
We'd have to see what your reader is doing overall - meaning what query are you running?, what database are you using?, what client are you using?, what are your connection string options?, etc...
...
It's a cookie, so it's client side. Assuming that you've actually set the cookie to be persistent (the default is for in client memory) the server should handle it just like it would without...
Have you guys tried Google for reference on the System.Net.Mail namespace? The first link that came up for me shows exactly how to easily pull this off.
The 2nd link is the Microsoft reference for...
The most important piece to note here is do not use this for anything security related (ie, not showing a contest page until a certain time). If you're trying to give a job time to run, make the...
The simplest method is likely to involve a simple javascript countdown tool that has the time initialized via a server side script. What language are you wanting to use on the server side?
- It's best to provide the actual text of the errors you're getting. Your code may be correct but the environment may have issues. The actual error messages help decipher that.
...
If I understand you correctly, you're passing a comma separated list of values as an entry for a given key. When accessing it via $_POST, you get that list back, but you want an array.
As MMH mentions, this is what you need to look at, but be careful about making it too large. If this is a public site, it makes it possible for someone to DoS the site by sending too many large...
It depends on where you're doing it - if you're writing this in the markup for a page, use the <%= %> tags. If you're doing it in a code-behind or in script, you just need to concatenate the strings...
It depends on what you need to do - if you place it in a string value, you can simply concatenate it to a URL / query string as needed. For on page, there are many ways - most simplistic (in...