ASP.Net - Gridview

The GridView control is the successor to the DataGrid control. It is included wth VS2005 and is used with asp.web projects. Includes the capability edit the data. There are places to add data, edit data, you can add buttons including a delete button.

Read More

ASP.Net FileUpload

Use the FileUpload control to upload files from your computer system to the file server. You will want to do this for several reasons, but the most important reason is the Web Server cannot read a file on a local computer. So the accepted process is to upload a file from the local the computer to the server, and then open the file there.

Read More