数据在存为数据库之前,用JS的encodeURIComponent进行编码,现需要在后台代码中进行解码,实现decodeURIComponent的功能,
如下:
HttpUtility.UrlDecode(dr[j].ToString());
用C#实现去掉文字中的html标签,用正则表达式实现:
value = System.Text.RegularExpressions.Regex.Replace(value, @"<[^>]*>", "");
时间: 2024-10-26 19:13:07