Using wildcards with a LinqDataSource

前端 未结 2 568
醉话见心
醉话见心 2021-01-07 00:36

I currently have a LinqDataSource on an ASP.NET page which is used as the data source for a FormView. I need to dynamically alter the where clause based on para

2条回答
  •  醉酒成梦
    2021-01-07 01:15

    Please try url decode Request.QueryString[key]

    Example:

    HttpUtility.UrlDecode(Request.QueryString[key]);
    

提交回复
热议问题