Click here to Skip to main content
15,886,137 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: opening excel document Pin
keyur satyadev10-Feb-09 1:25
keyur satyadev10-Feb-09 1:25 
GeneralRe: opening excel document Pin
kulandaivel_mca200710-Feb-09 1:33
kulandaivel_mca200710-Feb-09 1:33 
GeneralRe: opening excel document Pin
_AK_10-Feb-09 1:36
_AK_10-Feb-09 1:36 
GeneralRe: opening excel document Pin
anujbanka178410-Feb-09 1:54
anujbanka178410-Feb-09 1:54 
QuestionAdding row to datatable programmatically Pin
Paul McGann10-Feb-09 1:22
professionalPaul McGann10-Feb-09 1:22 
AnswerRe: Adding row to datatable programmatically Pin
_AK_10-Feb-09 1:40
_AK_10-Feb-09 1:40 
GeneralRe: Adding row to datatable programmatically Pin
Paul McGann10-Feb-09 2:15
professionalPaul McGann10-Feb-09 2:15 
AnswerRe: Adding row to datatable programmatically Pin
Kaushal Arora10-Feb-09 17:59
Kaushal Arora10-Feb-09 17:59 
Add a code line in bold in your code.

If e.CommandName = "Assign" Then

If e.Item.ItemType = ListItemType.Footer Then

Dim control_name As New DropDownList
control_name = e.Item.FindControl("control_name")

Dim row As DataRow = dt.NewRow
row(0) = Session("ID")
row(1) = control_name.SelectedItem.Value
row(2) = control_name.SelectedItem.Text
dt.Rows.Add(row)
dt.AcceptChanges();

datagrid.DataSource = dt
datagrid.DataBind()

End If
End If

It will work fine.

Regards,
Kaushal Arora
QuestionHOW TO OPEN FILE. Pin
anujbanka178410-Feb-09 1:20
anujbanka178410-Feb-09 1:20 
AnswerRe: HOW TO OPEN FILE. Pin
Vasudevan Deepak Kumar10-Feb-09 2:46
Vasudevan Deepak Kumar10-Feb-09 2:46 
AnswerRe: HOW TO OPEN FILE. Pin
Ranjit Viswakumar10-Feb-09 16:39
Ranjit Viswakumar10-Feb-09 16:39 
QuestionNetwork printing Pin
Armandt__10-Feb-09 1:05
Armandt__10-Feb-09 1:05 
AnswerRe: Network printing Pin
Armandt__11-Feb-09 20:05
Armandt__11-Feb-09 20:05 
Questionopening excel document Pin
kulandaivel_mca200710-Feb-09 1:04
kulandaivel_mca200710-Feb-09 1:04 
AnswerRe: opening excel document Pin
support synthesys10-Feb-09 2:06
support synthesys10-Feb-09 2:06 
GeneralRe: opening excel document [modified] Pin
kulandaivel_mca200710-Feb-09 2:14
kulandaivel_mca200710-Feb-09 2:14 
Questionthumbnail image in datalist and display full size image on any of datalist image click Pin
Member 398136610-Feb-09 0:49
Member 398136610-Feb-09 0:49 
QuestionIFrame Pin
trinm198710-Feb-09 0:36
trinm198710-Feb-09 0:36 
AnswerRe: IFrame Pin
Vasudevan Deepak Kumar10-Feb-09 2:48
Vasudevan Deepak Kumar10-Feb-09 2:48 
QuestionUnable to pass values through soapcontext Pin
Sundar_R10-Feb-09 0:30
Sundar_R10-Feb-09 0:30 
QuestionHow to perform grid view operations like select,update delete from database in asp.net 2.0? Pin
Member 46630879-Feb-09 23:34
Member 46630879-Feb-09 23:34 
AnswerRe: How to perform grid view operations like select,update delete from database in asp.net 2.0? Pin
Paddy Boyd10-Feb-09 0:23
Paddy Boyd10-Feb-09 0:23 
Questionsmalldatetime in repeater control Pin
radupopescu7779-Feb-09 23:21
radupopescu7779-Feb-09 23:21 
AnswerRe: smalldatetime in repeater control Pin
Bardy8510-Feb-09 1:02
Bardy8510-Feb-09 1:02 
GeneralRe: smalldatetime in repeater control Pin
radupopescu77710-Feb-09 1:30
radupopescu77710-Feb-09 1:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.