为什么屏幕刷新后,字体会会变大
sunck 2010-01-25 09:08:17 <div id="1"; style=" font-size:small">
<table style="width: 100%; " >
<tr>
<td style="width:8%">
<asp:Label ID="Label28" runat="server" Text="子区域"></asp:Label>
</td>
<td style="width:12%">
<asp:DropDownList ID="SubArea" runat="server"
DataSourceID="SqlDataSourceSubArea" DataTextField="subarea_name"
DataValueField="subarea" ondatabound="SubArea_DataBound">
</asp:DropDownList>
</td>
<td style="width: 8%">
<asp:Label ID="Label9" runat="server" Text="起始日期"></asp:Label>
</td>
<td style="width: 12%">
<asp:TextBox ID="DateStart" runat="server" Width="80px"></asp:TextBox>
</td>
<td style="width: 8%">
<asp:Label ID="Label22" runat="server" Text="截至日期"></asp:Label>
</td>
<td style="width: 16%">
<asp:TextBox ID="DateEnd" runat="server" Width="80px" AutoPostBack="True"></asp:TextBox>
</td>
<td style="width: 10%">
<asp:Label ID="Label19" runat="server" Text="交易地点"></asp:Label>
</td>
<td style="width: 16%">
<asp:DropDownList ID="ExchangeSite" runat="server"
DataSourceID="SqlDataSourceExchangeSite" DataTextField="exchange_site_name"
DataValueField="exchange_site_id" ondatabound="ExchangeSite_DataBound1"
AutoPostBack="True">
</asp:DropDownList>
</td>
</tr>
<tr>
<td >
<asp:Label ID="Label25" runat="server" Text="费用类型"></asp:Label>
</td>
<td >
<asp:DropDownList ID="FeeType" runat="server"
DataSourceID="SqlDataSourceFeeType" DataTextField="fee_type"
DataValueField="fee_type" ondatabound="FeeType_DataBound">
</asp:DropDownList>
</td>
<td >
<asp:Label ID="Label26" runat="server" Text="项目类型"></asp:Label>
</td>
<td >
<asp:DropDownList ID="FeeItemType" runat="server"
DataSourceID="SqlDataSourceFeeItemType" DataTextField="fee_item_type"
DataValueField="fee_item_type" ondatabound="FeeItemType_DataBound">
</asp:DropDownList>
</td>
<td >
<asp:Label ID="Label27" runat="server" Text="费用名称"></asp:Label>
</td>
<td >
<asp:DropDownList ID="FeeItemName" runat="server"
DataSourceID="SqlDataSourceFeeItemName" DataTextField="fee_item_name"
DataValueField="fee_item_name" ondatabound="FeeItemName_DataBound"
AutoPostBack="True">
</asp:DropDownList>
</td>
<td >
<asp:Label ID="Label23" runat="server" Text="报表项目类型"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ReportItemType" runat="server"
DataSourceID="SqlDataSourceReportItemType"
DataTextField="hall_report_item_type"
DataValueField="hall_report_item_type"
ondatabound="ReportItemType_DataBound" AutoPostBack="True">
</asp:DropDownList>
</td>
</tr>
<tr>
<td colspan="2" >
<asp:Label ID="Label24" runat="server" Text="报表项目名称"></asp:Label>
</td>
<td colspan="2" >
<asp:DropDownList ID="ReportItemName" runat="server"
DataSourceID="SqlDataSourceReportItemName"
DataTextField="hall_report_item_name"
DataValueField="hall_report_item_name"
ondatabound="ReportItemName_DataBound" AutoPostBack="True">
</asp:DropDownList>
</td>
<td >
</td>
<td >
<asp:Button ID="ButtonQuery" runat="server" Text="报表查询" Width="90px"
onclientclick="return testReport();"
onclick="ButtonQuery_Click" />
</td>
<td>
</td>
<td >
<asp:Button ID="ButtonDetail" runat="server" onclick="ButtonDetail_Click"
Text="项目明细" />
</td>
</tr>
</table>
</div>
其中有按钮去打开另外一个iframe程序,执行完,就字体变大了
string v_location = "window.parent.b.location='shop_employee_day_fee_checkout_query.aspx?ReportDate=" + CRMExchangeDate.Text + "&ExchangeSite=" + ExchangeSite.Text + "&EmployeeID=" + EmployeeID.Text + "&Checked=" + Checked.Text + "&Verified=" +Verified.Text +"'";
Response.Write(" <script language=javascript>");
Response.Write(v_location);
Response.Write(" </script>");