I am using dropdown in ASP.net to display image along with value\[code\]<asp
ropDownList ID="ddBanner" runat="server" CssClass="ddBanner" ></asp
ropDownList>\[/code\]I used the following link to modify to my needs, i got it working. http://www.aspdotnet-suresh.com/2011/12/jquery-bind-images-to-dropdownlist-in.htmlI need to get the dropdown value, which i am finding hard in my case. when i use ddBanner.SelectedValue or ddBanner.selectedItem or ddBanner.text it gets me "1.png" while i want the "1" to store in the database, below is the value after i run the webpage \[code\]<select id="MainContent_ddBanner" class="ddBanner" name="ctl00$MainContent$ddBanner"><option title="../ImagesBanners/1.png" value="http://stackoverflow.com/questions/8788835/1.png">1</option><option title="../ImagesBanners/2.png" value="http://stackoverflow.com/questions/8788835/2.png">3</option><option title="../ImagesBanners/3.png" value="http://stackoverflow.com/questions/8788835/3.png">6</option></select>\[/code\]What should i do to get the "1" or "2" from the drop down. i also need to pre select the value store in data base when i am update the same data . data Example:PageTablePageName, PageTitle, PageBannerIDHome , Welcome to our site, 1Banner tableBannerID, BannerImage1, 1.png2, b.png3, 3.png

