Click here to Skip to main content
15,890,579 members

Comments by Rojalin Sahoo (Top 23 by date)

Rojalin Sahoo 13-Apr-16 9:23am View    
Not clear about your issue. Check if a proper link is given to tag or not.
Rojalin Sahoo 13-Apr-16 8:11am View    
did your modalpopupControl is within update panel? You could use style="display:none;" for PopupPanel instead of visible attribute, so that popUpPanel.Visible = true; will not be needed on code-behind.
Rojalin Sahoo 22-Mar-16 7:15am View    
I am not clear about your relation between datalist1 and datalist2. If you want to save the command argument of datalist1 and use it for datalist2 then you can use viewstate for that. on datalist1_ItemCommand save the selected row command argument in viewstate and use it anywhere you want in that page.
Rojalin Sahoo 22-Jan-16 0:24am View    
may the if condition will be like: if(DataGridView1.SelectedRows.Count > 0) then it will display data on text-box.
Rojalin Sahoo 9-Nov-15 7:24am View    
Assign connection to command.
using (SqlCommand cmd = new SqlCommand("select MAX(Column3) from table1",connection))