c# – 如何在ASP.NET中使用User.Identity.Name作为SqlDataSource的参数?

前端之家收集整理的这篇文章主要介绍了c# – 如何在ASP.NET中使用User.Identity.Name作为SqlDataSource的参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于sqlDataSource,我可以配置传入参数的外部源.
例如,它可能是一个QueryString,Session,Profile等.
但是我没有选择使用User作为源.

我知道我可以为插入,选择,更新,删除事件中的参数提供参数.但是我不认为这是一个很好的解决方案,因为我已经在aspx文件中定义了一些参数.我不想在两个不同的地方定义参数.它弄乱了

那么我可以以某种方式在.aspx文件中定义这个参数吗?

<SelectParameters>
        <asp:QueryStringParameter DefaultValue="-1" Name="ID" 
            QueryStringField="ID" />
        //User.Identity.Name goes here as a value for another parameter  
    </SelectParameters>

解决方法

在你的.aspx中声明它并填写你的代码

ASPX

<asp:Parameter Name="username" Type="String" DefaultValue="Anonymous" />

代码隐藏

protected void Page_Init(object sender,EventArgs e) {
    DataSource.SelectParameters["username"].DefaultValue = User.Identity.Name;
}

猜你在找的C#相关文章