我有一個帶3個單選按鈕和文本框的用戶控件。如果選擇RB1,我將顯示文本框。對於剩餘的兩個選項,我將隱藏文本框。爲單選按鈕動態添加屬性
<asp:RadioButton ID="rbAPL" runat="server" Checked="true" CssClass="tablecelldata"
GroupName="ServiceType" Text="Testing of Animal Pathogens & Veterinary Biologics" /><br />
<asp:RadioButton ID="rbVPHL" runat="server" CssClass="tablecelldata" GroupName="ServiceType"
Text="Food Testing and Export Health Certification (Veterinary Health Certificate for Meat, Fish & Dairy Products)" /><br />
<asp:RadioButton ID="rbPHL" runat="server" CssClass="tablecelldata" GroupName="ServiceType"
Text="Plant Health Diagnosis Services" />
然後將文本框
<asp:TextBox ID="tbxApplicationRefNo" runat="server" Width="350px"></asp:TextBox>
我想動態設置單選按鈕的屬性來顯示或隱藏文本框。我該怎麼做?
在此先感謝您的回覆!
看起來像你想用javascript做的事情,而不是服務器端。 – Oded
不客氣!我會很高興,如果你投票了我的答案:)謝謝。 – vladimir77