Here i am showing a notification in main page where it shows a jquery notification for insurance expiry date…actually i want to add the expiry date also with the message which is returned from database.
here my notification script for jquery
<script type="text/javascript">
function test1() {
$(document).ready(function() {
$.sticky('Your insurance Expire on' );
});
}
</script>
in main page aspx.cs am retrieving the date and displaying it on label same like i want in notification how i can do it
You could put the database data into a hidden field on the page, and then have the jQuery pick up the text from the hidden field, such as
Or something similar!