Para permitirle al usuario seleccionar un archivo de su máquina local:

Gizmox.WebGUI.Forms.OpenFileDialog ofd=new Gizmox.WebGUI.Forms.OpenFileDialog();
ofd.Closed += new System.EventHandler(this.ofd_Closed);
ofd.ShowDialog();
private void ofd_Closed(object sender, EventArgs e)
{
    try
    {
        Gizmox.WebGUI.Forms.OpenFileDialog ofd =sender as Gizmox.WebGUI.Forms.OpenFileDialog;
    if (ofd.DialogResult == Gizmox.WebGUI.Forms.DialogResult.OK)
    {
        //aca en ofd.FileName deberia estar recien el nombre del archivo
    }
    }
    catch(System.Exception ex)
    {
        System.Windows.Forms.MessageBox.Show(ex.ToString());
    }
}