Hi Guys

Our client's requirements are to create a file upload screen where they upload Excel files to & some processing is done on the data. I simple interface with a file upload & a submit button. Below is the code.

public override void BuildContents()
{
this.AddContent("<Form id='form' method='post' action='' runat='server'>");
this.AddContent("<input type='file' id='fileUpload' />");
this.AddContent("<input type='submit' id='submit' value='Submit'");
this.AddContent("</Form>");

GetTabs("Opportunity", "MyCustomPage");
}

How do I specify the action to a class/function where processing is done?

Kind regards.