G
Gert
Would it be possible to access the file CONTENT in codebehind for a
standard:
<input id="htmlFile" type="file" />
Then in codebehind:
foreach (string keyName in
System.Web.HttpContext.Current.Request.Form.Keys)
{
//i can see keyName = "htmlFile" here as well as the "c:/myfile.txt"
for example
// i need content here
}
I cant use:
<asp:FileUpload ID="dotnetFile" runat="server" />
because I attempt to integrate legacy ASP application in our new
master page UI framework.
Help would be much appreciated
G
standard:
<input id="htmlFile" type="file" />
Then in codebehind:
foreach (string keyName in
System.Web.HttpContext.Current.Request.Form.Keys)
{
//i can see keyName = "htmlFile" here as well as the "c:/myfile.txt"
for example
// i need content here
}
I cant use:
<asp:FileUpload ID="dotnetFile" runat="server" />
because I attempt to integrate legacy ASP application in our new
master page UI framework.
Help would be much appreciated
G