problem with radio button
-
hello, i want to set the name attribute of radio button in html from the .vb file.is it possible.how to do it? Thanx, chitranjan more dash than cash!!!
-
hello, i want to set the name attribute of radio button in html from the .vb file.is it possible.how to do it? Thanx, chitranjan more dash than cash!!!
By Setting RadioButton1.ID = "Newvalue"; Both the Name and ID value Can be set at Runtime Radio buttons are rendered With in a span Tag in Client Side By setting RadioButton1.Attributes.Add("Name","Value"); We can specefying an Name attribute to SPAN Tag
-
By Setting RadioButton1.ID = "Newvalue"; Both the Name and ID value Can be set at Runtime Radio buttons are rendered With in a span Tag in Client Side By setting RadioButton1.Attributes.Add("Name","Value"); We can specefying an Name attribute to SPAN Tag
is it necessary to use attributes.add("","")?what if the attribute is already there.can i do like attributes("")="" more dash than cash!!!