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