回复 3楼gw0506的帖子
我发现变样式不止是GridView的问题,下面是我的代码
ddl1一回传,样式就变了。另外我另外一个问题怎么解决?
<asp:Content ID="Content1" ContentPlaceHolderID="Mas_head" runat="server">
<link href="../../Resources/Theme/jquery-ui-1.10.3.custom/css/start/jquery-ui-1.10.3.custom.css"
rel="stylesheet" type="text/css" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Mas_top" runat="server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="Mas_title" runat="server">
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="Mas_content" runat="server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<aspropDownList ID="ddl1" runat="server" AutoPostBack="true">
<aspistItem Value="1">123</aspistItem>
<aspistItem Value="2">234</aspistItem>
</aspropDownList>
<wijmo:C1TextboxExtender ID="TooltipExtender1" runat="server" TargetSelector=":input[type='text'],textarea">
</wijmo:C1TextboxExtender>
<table width="100%">
<tr>
<td width="100px" align="right">
学园名称:
</td>
<td width="150px">
<asp:TextBox ID="tbSchoolName" runat="server"></asp:TextBox>
</td>
<td width="100px" align="right">
学园电话:
</td>
<td width="150px">
<asp:TextBox ID="tbPhone" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td width="100px" align="right">
学园地址:
</td>
<td width="150px">
<asp:TextBox ID="tbAddress" runat="server"></asp:TextBox>
</td>
<td width="100px" align="right">
校训:
</td>
<td width="150px">
<asp:TextBox ID="tbMotto" runat="server"></asp:TextBox>
<%--<asp:TextBoxWatermarkExtender ID="tbwe1" runat="server" WatermarkText="知善知恶是良知"
TargetControlID="tbMotto" WatermarkCssClass="css_tb_notice">
</asp:TextBoxWatermarkExtender>--%>
</td>
</tr>
<tr>
<td width="100px" align="right">
创立人:
</td>
<td width="150px">
<asp:TextBox ID="tbSetupPerson" runat="server"></asp:TextBox>
</td>
<td width="100px" align="right">
创立时间:
</td>
<td width="150px">
<wijmo:C1InputDate ID="C1SetupDate" runat="server" ShowTrigger="true">
</wijmo:C1InputDate>
</td>
</tr>
<tr>
<td width="100px" align="right">
学园简介:
</td>
<td colspan="3">
<asp:TextBox ID="tbRemark" runat="server" TextMode="MultiLine" Width="95%" Height="100px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="4" align="right">
<br />
<hr />
<asp:Button ID="btnOK" runat="server" Text="确定" />
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content> |