I have a GridView bound to a SqlDataSource. On page load I would like to programmatically specify a SelectParameter value based on the role of the user. This SelectParameter will be used in my WHERE clause. The closest post I can find ishttp://forums.asp.net/thread/1233258.aspx but no answer was posted.
What code would I use to modify a SelectParameters value? Is it possible to reference a parameter by name (SqlDataSource1.SelectParameters["usertype"]) or does it have to be by index? (SqlDataSource1.SelectParameters[0])
Alternatively, perhaps I'm going about this in the wrong way, is there a better way to have dynamic GridView content based on the role of the user?
Thank you very much for your help.
Yes, you can set the value of a select parameters by name, for exampleSqlDataSource1.SelectParameters["usertype"].DefaultValue ="role"|||
Both parameter name and index are working here.
protected
void Page_Load(object sender,EventArgs e){
SqlDataSource1.SelectParameters[0].DefaultValue=
"yourvalue";or
SqlDataSource1.SelectParameters["usertype"].DefaultValue="yourvalue";
}
|||You can also set the value in the SqlDataSource_Selecting event via the e parameter:
Private Sub SqlDataSource1_Selecting(stuff)
e.command.paramter("param1").value=something
end sub
No comments:
Post a Comment