- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是我的第一个问题,请耐心等待。 :)所以,我花了几个小时试图解决这个问题,但还没有找到解决方案。问题很简单:
我正在使用 Visual Studio 2013 Ultimate 90 天试用版和 ASP.Net Framework 4.5 和 C# 创建一个简单的网站,用户可以在其中创建一个帐户,这意味着他们的帐户数据需要保存到一个数据库。
我使用的数据库工具是 SQLite,因为我读到这是一个用于小型数据库的好工具。
因此,在我实际输入测试用户的信息并单击我的“创建帐户!”之前,我的应用程序运行良好。按钮。此时我的应用程序出现以下错误:
Access to the path 'C:\Program Files (x86)\IIS Express\databaseFile.db3' is denied.
描述:当前网络请求执行过程中出现未处理的异常。请查看堆栈跟踪以获取有关错误及其在代码中的来源的更多信息。
Exception Details: System.UnauthorizedAccessException: Access to the path 'C:\Program Files (x86)\IIS Express\databaseFile.db3' is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via , the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET access to a file, right-click the file in File Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
来源错误:
Line 28: )"; Line 29: Line 30:
System.Data.SQLite.SQLiteConnection.CreateFile("databaseFile.db3");
// Create the file which will be hosting our database Line 31:
using (System.Data.SQLite.SQLiteConnection con = new System.Data.SQLite.SQLiteConnection("data source=databaseFile.db3")) Line 32: {Source File: c:\Users\Alex\Documents\Visual Studio 2013\Projects\WebDataBase\WebDataBase\SignUpForm.aspx.cs Line: 30
Stack Trace:
[UnauthorizedAccessException: Access to the path 'C:\Program Files (x86)\IIS Express\databaseFile.db3' is denied.]
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +217 System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) +1305 System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize) +63
System.Data.SQLite.SQLiteConnection.CreateFile(String databaseFileName) +38 WebDataBase.SignUpForm.AddNewUser(String pw) in c:\Users\Alex\Documents\Visual Studio 2013\Projects\WebDataBase\WebDataBase\SignUpForm.aspx.cs:30
WebDataBase.SignUpForm.Button_CREATE_ACCOUNT_Click1(Object sender, EventArgs e) in c:\Users\Alex\Documents\Visual Studio 2013\Projects\WebDataBase\WebDataBase\SignUpForm.aspx.cs:71
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9653178
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +103
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1724
好的,所以,我读到要解决这个问题,我所要做的就是授予对数据库文件的访问权限,但我不能这样做,因为数据库文件尚不存在。
谁能帮帮我?
谢谢! :D
哦,如果你需要的话,这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SQLite;
namespace WebDataBase
{
public partial class SignUpForm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void AddNewUser(string pw)
{
string email = TextBox_EMAIL.Text;
string username = TextBox_USERNAME.Text;
string createTableQuery = @"CREATE TABLE IF NOT EXISTS [UserData] (
[ID] INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
[Email] NVARCHAR(30) NULL,
[Username] NVARCHAR(12) NULL,
[Password] NVARCHAR(12) NULL
)";
System.Data.SQLite.SQLiteConnection.CreateFile("databaseFile.db3"); // Create the file which will be hosting our database
using (System.Data.SQLite.SQLiteConnection con = new System.Data.SQLite.SQLiteConnection("data source=databaseFile.db3"))
{
using (System.Data.SQLite.SQLiteCommand com = new System.Data.SQLite.SQLiteCommand(con))
{
con.Open(); // Open the connection to the database
com.CommandText = createTableQuery; // Set CommandText to our query that will create the table
com.ExecuteNonQuery(); // Execute the query
com.CommandText = "INSERT INTO UserData (ID,Email,Username,Password) Values ('" + email + "','" + username + "','" + pw + "')"; // Add the first entry into our database
com.ExecuteNonQuery(); // Execute the query
//com.CommandText = "INSERT INTO UserData (ID,Email,Username,Password) Values ('key two','value value')"; // Add another entry into our database
// com.ExecuteNonQuery(); // Execute the query
com.CommandText = "Select * FROM UserData"; // Select all rows from our database table
using (System.Data.SQLite.SQLiteDataReader reader = com.ExecuteReader())
{
while (reader.Read())
{
string row = (reader["ID"] + " : " + reader["Email"] + " : " +
reader["Username"] + " : " + reader["Password"]); // Display the value of the key and value column for every row
Label1.Text = row;
}
}
con.Close(); // Close the connection to the database
}
}
}
protected void Button_CREATE_ACCOUNT_Click1(object sender, EventArgs e)
{
Label1.Text = "";
string pw = TextBox_PASSWORD.Text;
string confirmedPw = TextBox_CONFIRM_PASSWORD.Text;
// Check if "password" and "confirm password" values are the same
if (pw.Equals(confirmedPw, StringComparison.Ordinal))
{
AddNewUser(pw);
}
else
{
Label1.Text = "Passwords are not matching. Please make sure they are matching.";
}
}
}
}
最佳答案
您需要授予您对 C:\Program Files (x86)\IIS Express\
文件夹本身的应用程序权限(我可能不推荐),或者使用实际位于项目文件夹(在你的例子中看起来像是 c:\Users\Alex\Documents\Visual Studio 2013\Projects\WebDataBase\WebDataBase
),这是我的建议。
关于c# - 我在设置使用简单数据库实现的网站时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28995630/
我正在努力实现以下目标, 假设我有字符串: ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ) ) ) ) ) 我想编写一个正则
给定: 1 2 3 4 5 6
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
大家好,我卡颂。 Svelte问世很久了,一直想写一篇好懂的原理分析文章,拖了这么久终于写了。 本文会围绕一张流程图和两个Demo讲解,正确的食用方式是用电脑打开本文,跟着流程图、Demo一
身份证为15位或者18位,15位的全为数字,18位的前17位为数字,最后一位为数字或者大写字母”X“。 与之匹配的正则表达式: ?
我们先来最简单的,网页的登录窗口; 不过开始之前,大家先下载jquery的插件 本人习惯用了vs2008来做网页了,先添加一个空白页 这是最简单的的做法。。。先在body里面插入 <
1、MySQL自带的压力测试工具 Mysqlslap mysqlslap是mysql自带的基准测试工具,该工具查询数据,语法简单,灵活容易使用.该工具可以模拟多个客户端同时并发的向服务器发出
前言 今天大姚给大家分享一款.NET开源(MIT License)、免费、简单、实用的数据库文档(字典)生成工具,该工具支持CHM、Word、Excel、PDF、Html、XML、Markdown等
Go语言语法类似于C语言,因此熟悉C语言及其派生语言( C++、 C#、Objective-C 等)的人都会迅速熟悉这门语言。 C语言的有些语法会让代码可读性降低甚至发生歧义。Go语言在C语言的
我正在使用快速将 mkv 转换为 mp4 ffmpeg 命令 ffmpeg -i test.mkv -vcodec copy -acodec copy new.mp4 但不适用于任何 mkv 文件,当
我想计算我的工作簿中的工作表数量,然后从总数中减去特定的工作表。我错过了什么?这给了我一个对象错误: wsCount = ThisWorkbook.Sheets.Count - ThisWorkboo
我有一个 perl 文件,用于查看文件夹中是否存在 ini。如果是,它会从中读取,如果不是,它会根据我为它制作的模板创建一个。 我在 ini 部分使用 Config::Simple。 我的问题是,如果
尝试让一个 ViewController 通过标准 Cocoa 通知与另一个 ViewController 进行通信。 编写了一个简单的测试用例。在我最初的 VC 中,我将以下内容添加到 viewDi
我正在绘制高程剖面图,显示沿路径的高程增益/损失,类似于下面的: Sample Elevation Profile with hand-placed labels http://img38.image
嗨,所以我需要做的是最终让 regStart 和 regPage 根据点击事件交替可见性,我不太担心编写 JavaScript 函数,但我根本无法让我的 regPage 首先隐藏。这是我的代码。请简单
我有一个非常简单的程序来测量一个函数花费了多少时间。 #include #include #include struct Foo { void addSample(uint64_t s)
我需要为 JavaScript 制作简单的 C# BitConverter。我做了一个简单的BitConverter class BitConverter{ constructor(){} GetBy
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是 Simple.Data 的新手。但我很难找到如何进行“分组依据”。 我想要的是非常基本的。 表格看起来像: +________+ | cards | +________+ | id |
我现在正在开发一个 JS UDF,它看起来遵循编码。 通常情况下,由于循环计数为 2,Alert Msg 会出现两次。我想要的是即使循环计数为 3,Alert Msg 也只会出现一次。任何想法都
我是一名优秀的程序员,十分优秀!