Using ASP.Net, VB.Net
In my web page, i want to attach the file.
How to attach the file
Need code help
Using ASP.Net, VB.Net
In my web page, i want to attach the file.
How to attach the file
Need code help
you can use asp upload
control
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx
Alternatively, you can use input
tag in HTML with type=file
to create file upload object with a text box and Browse button.
For Ex. <input type="file">
More information at this MSDN article