Hi Gus,
I am facing the problem with hidden field. here is my code.
Code:Dim i As Integer
If (dstFileDataSet.Tables(0).Rows.Count <> 0) Then
i = 0
For Each dr In dstFileDataSet.Tables(0).Rows
strChkUploadedBy = dr("UploadedBy").ToString()
Controls.Add(New LiteralControl("<input type=hidden id=""strChkUploadedBy"" name=""strChkUploadedBy<%=i%>"" value= """ + strChkUploadedBy + """ >"))
Next
i = i + 1
Response.Write(i)
End If
I am uable to get i vale like strChkUploadedBy1,strChkUploadedBy2....
Can any one help how to get like above?