我一直在研究向导。我陷入了一个棘手的境地,即
默认情况下,我得到 PREVIOUS , NEXT , FINISH 。但我想定制我的向导,它有 4 个阶段。 在第 1 阶段和第 2 阶段:下一步和保存按钮 第 3 阶段:发送以供批准 第 4 阶段:批准或拒绝
所以对于 4 个阶段,我类似地创建了 4 个 DIV
@using (Html.BeginForm("Index", "Home", FormMethod.Post))
{
<div id="step-1">
<h2 class="StepTitle">Step 1: Account Details</h2>
<table cellspacing="3" cellpadding="3" align="center">
<td align="center" colspan="3"> </td>
<tr>
<td align="right"> @Html.LabelFor(m=>m.Lead_Id) </td>
<td align="left">
: @Html.TextBoxFor(model=>model.Lead_Id , new { @readonly="readonly" } )
</td>
</tr>
<tr>
<td align="right"> @Html.LabelFor(m=>m.Contact_Name) </td>
<td align="left">
: @Html.TextBoxFor(model=>model.Contact_Name )
</td>
</tr>
<tr>
<td align="right"> @Html.LabelFor(m=>m.Contact_Address</td>
<td align="left">
: @Html.TextBoxFor(model => model.Contact_Address)
</td>
</tr>
<tr>
<td align="right"> @Html.LabelFor(m=>m.Lead_Source)</td>
<td align="left">
: @Html.DropDownListFor(c=>c.Lead_Source, Model.lead_sources)
</td>
</tr>
<tr>
<td> <input type="submit" value="SAVE" id="btnsave" /></td> // on click it does postback call to controller which saves my data accordingly . fine with that
<td><input type="button" onclick="donno()" value="NEXT STAGE" id="btnNext"</td> // Issue is here and what i need is onclick of button need to move to second stage of wizard so i been thinking to write a logic on click method of button ?
</tr>
</table>
</div>
}
我不知道怎么做?是否可以调用下一个阶段,即第 2 阶段的下一个 DIV 以显示点击。是否有任何解决方法可以将 DIV 绑定到按钮。所以点击按钮,DIV 的部分应该在向导的第 2 步中加载。
欢迎任何更好的想法,努力总是受到赞赏。
感谢和问候