storing Request.SerVariables["ALL_HTTP"] in sql...?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm trying to store the results of a
Request.ServerVariables["ALL_HTTP"].ToString() in my database.

What format does the field need to be? I've got it an ntext[16] but asp.net
is giving me a "string data will be truncated" message.

Cheeers


Dan
 
If you put trace="true" at in your .aspx page, you'll see in the trace
section how large the ALL_HTTP string can be... it can be quite substantial.
 
Back
Top