Click here to Skip to main content
15,912,756 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionfileupload control Pin
Nidhiii6-Sep-07 21:08
Nidhiii6-Sep-07 21:08 
AnswerRe: fileupload control Pin
Sandeep Akhare6-Sep-07 23:01
Sandeep Akhare6-Sep-07 23:01 
AnswerRe: fileupload control Pin
S A R I T H6-Sep-07 23:19
S A R I T H6-Sep-07 23:19 
Questiongridview + Asp.net 2.0 + c# Pin
ritu43216-Sep-07 20:55
ritu43216-Sep-07 20:55 
AnswerRe: gridview + Asp.net 2.0 + c# Pin
varshavmane6-Sep-07 21:09
varshavmane6-Sep-07 21:09 
AnswerRe: gridview + Asp.net 2.0 + c# Pin
VenkataRamana.Gali6-Sep-07 21:25
VenkataRamana.Gali6-Sep-07 21:25 
Questiondisplay xml file into datagrid Pin
darkday6-Sep-07 20:53
darkday6-Sep-07 20:53 
AnswerRe: display xml file into datagrid Pin
varshavmane6-Sep-07 21:04
varshavmane6-Sep-07 21:04 
Try this:

private void BindGridViewFromXML()
{
dt = new Datatable();
dt.ReadXml(Request.PhysicalApplicationPath + "EditableGridView\\" + "XMLFile.xml");
//Fire a query on dt to get the all the products whose price is > 100
gvGrid.DataSource = dt;
gvGrid.DataBind();
}

Hope this helps u...
GeneralRe: display xml file into datagrid Pin
darkday10-Sep-07 2:34
darkday10-Sep-07 2:34 
GeneralRe: display xml file into datagrid Pin
varshavmane10-Sep-07 3:09
varshavmane10-Sep-07 3:09 
QuestionRegarding Active reports Pin
aditya_asv6-Sep-07 20:51
aditya_asv6-Sep-07 20:51 
QuestionHow to add new row dynamic into dataset Pin
indiaone6-Sep-07 20:50
indiaone6-Sep-07 20:50 
AnswerRe: How to add new row dynamic into dataset Pin
VenkataRamana.Gali6-Sep-07 21:04
VenkataRamana.Gali6-Sep-07 21:04 
GeneralRe: How to add new row dynamic into dataset Pin
indiaone6-Sep-07 21:21
indiaone6-Sep-07 21:21 
Questionforms authentication Pin
saiprasada6-Sep-07 20:50
saiprasada6-Sep-07 20:50 
AnswerRe: forms authentication Pin
VenkataRamana.Gali6-Sep-07 21:06
VenkataRamana.Gali6-Sep-07 21:06 
GeneralRe: forms authentication Pin
saiprasada6-Sep-07 21:23
saiprasada6-Sep-07 21:23 
QuestionObject moved error - Urgent Pin
NK76-Sep-07 20:41
NK76-Sep-07 20:41 
QuestionClass inherting User Control and implementing ITemplate Pin
tsramkumar6-Sep-07 20:40
tsramkumar6-Sep-07 20:40 
QuestionCheckbox and FileUpload control query Pin
Shaurya_Rastogi6-Sep-07 20:39
Shaurya_Rastogi6-Sep-07 20:39 
QuestionHow to handle Multiple Asynchronous Requests at one time? Pin
IshfaqHussain6-Sep-07 20:04
IshfaqHussain6-Sep-07 20:04 
QuestionCascadingDropDown and AutoCompleteExtender Pin
varshavmane6-Sep-07 19:05
varshavmane6-Sep-07 19:05 
AnswerRe: CascadingDropDown and AutoCompleteExtender Pin
Imran Khan Pathan6-Sep-07 19:44
Imran Khan Pathan6-Sep-07 19:44 
GeneralRe: CascadingDropDown and AutoCompleteExtender Pin
varshavmane6-Sep-07 19:57
varshavmane6-Sep-07 19:57 
GeneralRe: CascadingDropDown and AutoCompleteExtender Pin
Imran Khan Pathan6-Sep-07 20:25
Imran Khan Pathan6-Sep-07 20:25 

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.