is there a way that I can use the sqldatasource with a form view where my sqldatasource select statement is like this
select * from tblUsers wherevcUserName=@.vcUserName
<selectparameters>
<
asp:ParameterName="user.identity.name"Type="String/></selectParameters>
Hi,
The way you are trying will not work.
Here is a link from Peter with a solution to handle this case by using ExpressionBuilder:
http://peterkellner.net/2006/09/18/expressionbuilderidentity/
Another way, I think you can try to assign the user to the selectParameter from your code under SqlDataSource's selecting event programatically. Also, you can assign the login user to a session varable and access to it through SessionParameter
No comments:
Post a Comment