Hi,
Just one little question, How do i get the IDs of the images which are single click (by java script as you describe me earlier).
When I execute your code (writen below) its gives all the IDs
Dim Dim As String = ""
Dim img As System.Web.UI.WebControls.Image
For Each con As Control In placeHolder1.Controls
If TypeOf con Is System.Web.UI.WebControls.Image Then
img = New System.Web.UI.WebControls.Image
img.ID = CType(con, Image).ID
If Not String.IsNullOrEmpty(img.ID) Then
Session("imageValues") = Session("ImageValues") + Dem + img.ID
Dem = "~"
MsgBox(img.ID)
End If
End If
Next
Thank You
|