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.
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 thingsPls help me outYaman |
|
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 |
 |
|
yaman
Posting Yak Master
213 Posts |
Posted - 2008-06-12 : 06:25:09
|
Sir my Aspx Page have Image Also With TextIt is Possible TO store All Of things With varchar(max) DatatypeWhole 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 |
 |
|
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" |
 |
|
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 TextIt is Possible TO store All Of things With varchar(max) DatatypeWhole 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 |
 |
|
|
|
|