У меня есть что-то вроде этого:
<form action="" id="fileUpload">
<input type="file" id="fileTest"/>
<input type="button" id="saveFile"/> </form>
Для пользователя, чтобы загрузить файл.
У меня тогда есть этот js:
$('#saveFile').click(function () {
PageMethods.ReadFile($('#fileTest').val());
});
И в моем коде c # я делаю это:
[WebMethod]
public static void ReadFile(string path)
{
try
{
// Create an instance of StreamReader to read from a file.
// The using statement also closes the StreamReader.
using (StreamReader sr = new StreamReader(path))
{
String line;
// Read and display lines from the file until the end of
// the file is reached.
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
// Let the user know what went wrong.
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
Но путь, который отправляется на webMethod, не является правильным путем к файлу.
Я просто пытаюсь получить данные из файла, а затем что-то сделать с ним.
Это способ сделать это? Если так, как я могу заставить это работать?
Или есть лучший способ сделать это.
Спасибо.