I need to do 2 things (I don't like the idea of doing it, however sometimes you're told what to do, not asked)
1) Write all html content pages to SQL. The problem with doing so is that VarChar can only hold so much. I've tried using the image datatype, however have had no luck. I've did an insert into the table passing the string into image datatype, which does not give me an error, however when I do a SELECT on it, it gives me 0X134223...
2) Once these pages have been loaded to SQL, I need to be able to read these back into the browser so the page will display. I've tried using Response.ContentType = "plain/text", with Response.BinaryWrite from the previous value of 0X134223...etc however came up null when I looped through the recordset.
Anybody have any additional ideas, maybe something else besides the image or binary datatypes.
-REBORN
1) Write all html content pages to SQL. The problem with doing so is that VarChar can only hold so much. I've tried using the image datatype, however have had no luck. I've did an insert into the table passing the string into image datatype, which does not give me an error, however when I do a SELECT on it, it gives me 0X134223...
2) Once these pages have been loaded to SQL, I need to be able to read these back into the browser so the page will display. I've tried using Response.ContentType = "plain/text", with Response.BinaryWrite from the previous value of 0X134223...etc however came up null when I looped through the recordset.
Anybody have any additional ideas, maybe something else besides the image or binary datatypes.
-REBORN