LinqDataSource:如何为代码中的where参数赋值?
我的 .aspx 文件中有以下 LinqDataSource1 的WhereParameters:
<WhereParameters>
<asp:Parameter Name="key1" Type="String" />
<asp:Parameter Name="key2" Type="String" />
</WhereParameters>
如何在后面的代码中为这些参数分配值?谢谢。
I have the following WhereParameters for LinqDataSource1 in my .aspx file:
<WhereParameters>
<asp:Parameter Name="key1" Type="String" />
<asp:Parameter Name="key2" Type="String" />
</WhereParameters>
How do I assign values to these parameters in my code behind? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在后面的代码中分配它们,如下所示:
希望这会有所帮助。
You can assign them in the code behind like this:
Hope this helps.