我使用了向导控制。这段代码来自pagesource。我想减少cellpadding和cellspacing
CELLSPACING =" 5" cellpadding =" 5" 。我必须改变这些价值观。这是默认的向导控件内部表样式。是否有可能改变如何?
<table cellspacing="0" cellpadding="0" border="0" id="WizardGL" style="width:100%;border-collapse:collapse;">
<tbody>
<tr style="height:100%;">
<td>
..................................................
</td>
</tr>
<tr>
<td align="right">
<table **cellspacing="5" cellpadding="5"** border="0">
<tbody><tr>
<td align="right">
<input type="submit" name="$WizardGL$StepNavigationTemplateContainerID$StepPreviousButton" value=" Previous" >
</td>
<td align="right">
<input type="submit" name="WizardGL$StepNavigationTemplateContainerID$StepNextButton" value="Next " id="WizardGL_StepNavigationTemplateContainerID_StepNextButton" >
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
在aspx页面的Wizard标记中更改它们,如下所示。
<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex="0"
OnActiveStepChanged="GetFavoriteNumberOnActiveStepIndex"
BackColor="#FFFBD6" BorderColor="#FFDFAD" BorderWidth="1px"
CellPadding="5" CellSpacing="3" Font-Names="Verdana"
Font-Size="0.8em" Width="322px">
</asp:Wizard>
但是如果你在向导中使用带有table元素的布局模板,那么你需要确保在布局模板的标记中也设置了cellpadding和cellspacing。
只需将这些值设置为适合您情况的值。