<script type="text/javascript">
function OnSubmitFile(myForm)
{
var fileUpload = document.getElementById('<% = fUpload.ClientID %>');
myForm.action = myForm.action + "?FilePath=" + fileUpload.value;
return true;
}
</script>
<form id="Form1" method="post" runat="server" onsubmit="return OnSubmitFile(this);">
<asp:FileUpload id="fUpload" runat="server" />
</form>
FireFox send file without full file path, so to retrieve file path you do it on client side via javascript function
you can also create hidden form field and send to server if you dint wish to send via querystring
Gow.Net, if this helps please login to Mark As Answer. | Alert Moderator