tppradeep18
February 8th, 2004, 11:05 PM
hi all,
I want to know how can i programitically display all the attributes and methods of button control.
I tried the following code but it is displaying only one attribute that is "style". I know I have
to iterate through the collection but I have no idea how to do it. any gurus there!
thanks
the code i have written
Dim mystr As String
For Each mystr In Button1.Attributes.Keys
Response.Write(mystr & "<br>")
Next
I want to know how can i programitically display all the attributes and methods of button control.
I tried the following code but it is displaying only one attribute that is "style". I know I have
to iterate through the collection but I have no idea how to do it. any gurus there!
thanks
the code i have written
Dim mystr As String
For Each mystr In Button1.Attributes.Keys
Response.Write(mystr & "<br>")
Next