有没有办法使用visual studio向导创建一个条目表单来检索和保存数据库中的数据,同时从硬盘上的目录中同时找到相应的文件。使用较少的编码
答案 0 :(得分:1)
据我所知,我认为没有办法只使用向导将文件保存到数据库,但这样做很容易:
<?php
error_reporting(E_ALL); ini_set('display_errors', 1);
header("Content-Disposition: attachment; filename=guide.pdf");
header("Content-Type: application/octet-stream");
header("Content-Length: ".filesize("guide.pdf"));
header("Pragma: no-cache");
header("Expires: 0");
$fp = fopen("guide.pdf", "r");
print fread($fp, filesize("guide.pdf"));
fclose($fp);
exit();
?>
<html>
<h1>Congrats</h1>
</html>
使用这样的东西,您应该可以轻松地在几行代码中实现它。
有关详情,请参阅MSDN上的这篇文章:https://msdn.microsoft.com/en-us/library/system.io.streamwriter(v=vs.110).aspx
此外,如果您在将数据库读入代码时遇到困难,可以使用:
Streamwriter sw = new Streamwriter(FilePath);
sw.WriteLine(/*database entries*/);