Click here to Skip to main content
16,012,352 members

Comments by Sushree Satpathy (Top 1 by date)

Sushree Satpathy 19-Nov-12 7:57am View    
Deleted
i think u r confused.... ok i'll paste the code part by part...

This is my Print code...


<script language="javascript" type="text/javascript">
function printContent(PnlHubDetails) {
//debugger;
var DocumentContainer;

DocumentContainer = document.getElementById('<%=Divhubdet.ClientID%>');

var html = '<html><head>' +
'<link href="../CSS/StyleSheet.css" rel="stylesheet" type="text/css" />' +
'</head><body>' +
DocumentContainer.innerHTML
'</body></html>';

var WindowObject = window.open("", "PrintWindow", "width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes");
WindowObject.document.writeln(html);
WindowObject.document.close();
WindowObject.focus();
WindowObject.print();
WindowObject.close();

}
</script>


Then this is my print button...

<table>
<tr id="tr_search" runat="server" style="display: none;">
<td align="right" colspan="2">

<img src="../Images/icon_small_print.gif" alt="print this page" id="print-button" />

<asp:ImageButton ID="imgmail" runat="server" ImageUrl="../Images/icon-small-email.gif"
OnClick="imgmail_OnClick" />
</td>
</tr>
</table>



Now this is my panel...
<div id="Divhubdet" runat="server">
<asp:UpdatePanel ID="UplHubDetails" runat="server">
<contenttemplate>
<asp:Panel ID="PnlHubDetails" GroupingText="Hub Details" runat="server" Style="display: none;
font-family: Verdana; font-size: 11px;">
<div>
<table width="100%">
<tr>
<td width="100%">
<asp:Panel ID="PnlHub" GroupingText="Hub Branch Details" runat="server" Style="font-family: Verdana;
font-size: 11px;">
<table width="100%">
<tr>
<td width="20%" style="font-family: Verdana; font-size: 11px; color: black;">
Hub name
</td>
<td width="5%" style="font-family: Verdana; font-size: 11px; color: black;">
:
</td>
<td width="75%" style="font-family: Verdana; font-size: 11px;">
<asp:HiddenField ID="hdnhubcode" runat="server" Visible="false" />
<asp:Label ID="lblHubName" runat="server" Text="NA" Style="font-weight: bold">
</td>
</tr>

</table>

</td>
</tr>
</table>
</div>


<Triggers>
<asp:AsyncPostBackTrigger ControlID="ddl_Hubs" EventName="SelectedIndexChanged" />
</Triggers>

</div>