일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 윈도우
- javascript
- 자바스크립트
- Winform
- aspnet
- SSRS
- 이클립스
- replace()
- 마이크로소프트
- 태그를 입력해 주세요.
- DataGrid
- 오라클
- attr()
- ASP
- c#
- 윈폼
- MS
- Excel
- IIS
- jQuery
- CONVERT()
- 단축키
- 비주얼스튜디오
- 리포팅서비스
- 엑셀
- oracle
- 프로시저
- microsoft
- windows
- MSSQL
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[C#] DB결과값에 HTML있는경우 HTML태크 제거하기 본문
1. Namespace 선언
2. StringHTML 메소드 생성
3. 실재 사용하는 곳에서 태그가 있는 text를 넣어줌.
- StripHTML(inputValue) ;
using System.Text.RegularExpressions ;
/// <summary>
/// 2007/12/14 - add by bhchoi
/// html 태그를 제거함.
/// </summary>
/// <param name="inputString">입력값</param>
/// <returns>string</returns>
public static string StripHTML (string inputString)
{
return Regex.Replace(inputString,@"<(.|\n)*?>",string.Empty);
}
private void Page_Load(object sender, System.EventArgs e)
{
string test = StripHTML(inputValue) ;
}
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[C#] 날짜 Defalut Set : 3개월 이전의 첫 시작 일 ~ 현재월 마지막 일 까지 (0) | 2015.12.03 |
---|---|
[ASP.NET] 해당월 시작일 구하기 (DateTime) (0) | 2015.12.03 |
[ASP.NET] foreach 문을 활용하여 컨트롤 제어하기 (0) | 2015.11.25 |
[ASP.NET] html 에서 서버주석 달기 (0) | 2015.11.25 |
[ASP.NET] The project type is not supported by this installation (0) | 2015.11.25 |