sql - How can I connect a jQuery slideshow with a database in ASP.net? -


so i'm using jquery plug-in called coin slider. slideshow seems working fine want connect database have created in app_date folder in visual studio 2010.

when clicked on picture, want system search table in database using description of particular image in slideshow keyword. if item exists in database, go website mentioned in href. otherwise, display "item not found".

all i've done make slideshow.

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">  <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <script src="js/jquery-1.9.1.js" type="text/javascript"></script>     <script src="css/coin-slider/coin-slider.min.js" type="text/javascript"></script>     <link href="css/coin-slider/coin-slider-styles.css" rel="stylesheet" type="text/css" />     <script type="text/javascript">         $(document).ready(function () {             $('#coin-slider').coinslider();         }); </script>     </head> <body> <div id='coin-slider'>     <a href="the first website goes here" target="_blank">         <img src='1.jpg' >         <span>             description goes here         </span>     </a>     <a href="the second website goes here">         <img src='2.jpg' >         <span>             description goes here         </span>     </a> </div>  </body> </html> 

any appreciated.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -