Forum: ASP.NET Mar 19th, 2009 |
| Replies: 3 Views: 1,102 Try this:
protected void Button1_Click(object sender, EventArgs e)
{
if(FileUpload1.HasFile)
{
string fileName = FileUpload1.FileName;
string... |
Forum: ASP.NET Feb 17th, 2009 |
| Replies: 3 Views: 559 I dont think there is a built in method to get selected ItemsCollection only. Even if there is one, the algorithm would be the same as yours. So it wont solve the performance issue. One way to do... |