首先,如果答案在那里,我很抱歉。我看了又看,觉得这是一件很简单的事情,应该很明显。
我想确保只有添加事件的人才能修改它。简单的!
我已经有一个以 event_added_by 作为数据点的数据源。它正在填充一个 FormView。
SelectCommand="SELECT * FROM [tbl_events] WHERE ([event_ID] = @event_ID)"
我有 Page.User.Identity.Name。
我如何比较两者?我无法从 FormView 的标签中提取值,所以我需要找到另一种方法。
if (!IsPostBack)
{
string uname = Page.User.Identity.Name;
string owner = ""// this is where I need to grab the value from dsEvents;
if (uname != owner)
{
//Send them somewhere saying they're not allowed to be here
}
}
TIA 寻求帮助!