Click here to Skip to main content
15,905,071 members

Comments by R@M-ITcian (Top 13 by date)

R@M-ITcian 7-Apr-15 0:58am View    
Thanks for your replies friends. I m using (.aspx) pages in my web application not (.html) and especially i just need it on IE8. Could you help me on this scenario?
R@M-ITcian 5-Dec-14 1:50am View    
Thank you for your reply Raul.
Yep might be, but i upload the file from either my server folder or my local and i just map tat path to access it in future and save it in a data table alone.

When i run tat in my local host, it works well and able to get the file path. Only on Live environment, it doesn't work.

Is there any other way?
R@M-ITcian 27-May-14 8:30am View    
Thank you snooze for your idea..
R@M-ITcian 17-May-14 1:34am View    
Public Sub AddCheckBox()<br>
For Each row As GridViewRow In gv.Rows<br>
For i = 0 To dtop.Rows.Count - 1<br>
If row.RowType = DataControlRowType.DataRow Then<br>
Dim cb As New CheckBox<br>
<br>
row.Cells(i + 2).Controls.Add(cb)<br>
End If<br>
Next<br>
Next<br>
End Sub<br>
 <br>
Protected Sub Page_PreLoad(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreLoad<br>
If (Not IsPostBack) Then<br>
Dim dtop As DataTable = BOLayer.GetDTable("")<br>
For j = 0 To dtop.Rows.Count - 1<br>
Dim tf As New TemplateField()<br>
Dim cb As New CheckBox<br>
tf.HeaderText = "" & dtop.Rows(j)(0) & ""<br>
gv.Columns.Add(tf)<br>
Next<br>
End If<br>
End Sub.

For this in click event i want to check the checkbox state by access t
R@M-ITcian 17-May-14 1:26am View    
I have added check box control dynamically. But now my problem access it