Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

c# - Correct way of storing custom text wrapped with styles - Database or Text File? -


i running asp.net connecting sql server 2005 database.

currently data get's saved in database when use html editor control (to allow user add styles text) following error when copy text lots of styles website text area (error comes when data trying save database):

string or binary data truncated. statement has been terminated.

why , how handle this? save text rather text file?

the size of field in database big enough!

edits

insert tablename(name, age, comments) values (@name, @age, @comments) 

then code behind call sqldatasource so

sqldatasource.insert() 

it sounds passing string variable stored procedure whit p.e. varchar(250) , string length on 251, if field in table varchar(1025) you'll error because of param length not ok.

or... try use "text" type on db field?

it's idea, if more info we'll more usefull. :)


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -