Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Search For a data type

Author  Topic 

yaman
Posting Yak Master

213 Posts

Posted - 2008-06-12 : 06:15:44
Sir ,

I want to Stored a Whole Aspx Pages
Aspx Pages have( Image , Text , Tags , All Possible Things Of Aspx Pages)
all things

Pls help me out

Yaman

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-12 : 06:20:17
Whole aspx page to a table field? use ntext or text datatype if using SQL 2000 or use varchar(max) if using SQL 2005
Go to Top of Page

yaman
Posting Yak Master

213 Posts

Posted - 2008-06-12 : 06:25:09
Sir my Aspx Page have Image Also With Text
It is Possible TO store All Of things With varchar(max) Datatype



Whole aspx page to a table field? use ntext or text datatype if using SQL 2000 or use varchar(max) if using SQL 2005
[/quote]

Yaman
Go to Top of Page

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2008-06-12 : 06:33:16
You can use VARCHAR(MAX) if you convert images to MIME64 compliant.



E 12°55'05.25"
N 56°04'39.16"
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-12 : 06:33:59
quote:
Originally posted by yaman

Sir my Aspx Page have Image Also With Text
It is Possible TO store All Of things With varchar(max) Datatype



Whole aspx page to a table field? use ntext or text datatype if using SQL 2000 or use varchar(max) if using SQL 2005



Yaman
[/quote]
Then you can store them in varbinary(max) typed columns
Go to Top of Page
   

- Advertisement -