I am trying to do an edit profile page..
Where on page load, the user reads data from database and its displayed.
I am using a fileupload on save button click..
<asp:Label ID="Label17" runat="server" Text="Logo"></asp:Label>
<div id="photo" >
<asp:Image ID="Image1" runat="server" Height="155px" Width="173px" />
<asp:FileUpload ID="FileUpload1" runat="server" Width="220px " />
</div>
C#
System.IO.FileInfo file = ...
Go to the complete details ...