对于sqlDataSource,我可以配置传入参数的外部源.
例如,它可能是一个QueryString,Session,Profile等.
但是我没有选择使用User作为源.
例如,它可能是一个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>