Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear to all
i want to populate limited data in datalist how can i do
here limited data mean...........
if any datafield hava 1000 thousand words then i want only show in datalist only
5 words this posible
Posted

Hmm: think I know what you might be asking. Perhaps start here[^].
 
Share this answer
 
Use can use SUBSTRING function in your sql qry for get limited data in data field. for example

SELECT SUBSTRING(Name,0,5) as ShortName from tblEmployee


then the result show as datalist source

thanks
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900