Hi all,
Below is my query which is in Storedprocedure(SQL Server 2008) will return list of items from a table.
Query:
SELECT
( COALESCE(ReviewDescription,'')+ REPLICATE (' ', 20 - LEN(ReviewDescription))
+ '|' +
( CONVERT(VARCHAR(100),ReviewCharge))) AS ReviewTypes
FROM ReviewType
query result(copied to text pad then its looking like below):
Sample review type |200
But after binding to ASP drop down control it is displaying like below drop down display:
Sample review type|200
Please some one can help on this.
Thanks in advance...