Click here to Skip to main content
15,903,201 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi..

I wan't to include file uploder control in aspxgridview. which is the control of DevExpress in asp.net 2005.

If u have any Suggesion Please answere me.
Posted
Updated 10-Jan-10 21:58pm
v2

A gridview lets you define a template for how data is shown, which means you can put any control in there you like.
 
Share this answer
 
Check out these online samples:
http://search.devexpress.com/?q=upload&p=T4|P5|57&d=16

You can also download the samples to your machine easily using this approach:
http://community.devexpress.com/blogs/aspnet/archive/2008/07/30/codecentral-source-code-to-search-download-run-enterprise-cheat.aspx
 
Share this answer
 
Use TemplateField column.
And in the Item Template put fileUpload control.

<asp:TemplateField>
    <ItemTemplate>
        <asp:FileUpload ID="FileUpload1" runat="server" />
    </ItemTemplate>
</asp:TemplateField>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900