EDIT:
its a confirmation div box that when the user click on save button, you typicall see the confirming that they have receivied your inqury.
and the div box look like this:
"[image] We got your email, and you should hear from us within 24 hours."
below is the code that i am using to display div with image but whats happening that, when the page loads i see the image first and than after i save the image i see the div msg and than image and div disappears (as it suppose to)
<div id="divStatus"></div>
<style type="text/css">
#divStatus {
background:transparent url(../images/ico_confirmation_sml.gif) no-repeat scroll 0 0;
padding-left: 22px;
min-height: 27px;
}
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), key, "$(function() { $('#divStatus').html('" + msg + "').show().fadeIn(800).fadeOut(9000); });", true);