일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리포팅서비스
- 윈폼
- ASP
- 자바스크립트
- javascript
- 단축키
- 태그를 입력해 주세요.
- 윈도우
- jQuery
- 비주얼스튜디오
- 엑셀
- SSRS
- MS
- aspnet
- attr()
- IIS
- CONVERT()
- c#
- oracle
- 오라클
- 마이크로소프트
- Winform
- replace()
- 이클립스
- Excel
- 프로시저
- MSSQL
- microsoft
- windows
- DataGrid
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] Repeater - ItemDataBound 이벤트에서 Label 컨트롤을 찾아 링크 걸어줄때의 방법 본문
[ASP.NET] Repeater - ItemDataBound 이벤트에서 Label 컨트롤을 찾아 링크 걸어줄때의 방법
뽀&쏭 2015. 11. 25. 12:28※ Repeater Control ItemDataBound 이벤트에서 Label Control을 찾아서 링크를 걸어주는 방법
방법1. 윈도우의 Status Bar에 해당 값들이 보여지며 링크가 걸리게 된다.
하지만 value에 공백(스페이스)이 존재하는 경우 링크가 잘리게 되는 현상이 있어서 링크 클릭시 오류가 발생함.
lblLinkAddr.Text = "<a href=javascript:rowSelect('"+ stridx +"','" + strlinkAddr + "','"+ strlenFrTop + "','"+ strlenFrLeft + "','"+ strwinWidth + "','"+ strwinHeight + "','"+ strshowYN + "','"+ strshowDivision + "','"+ strshowLevel + "','"+ strshowUser + "')>" + strlinkAddr + "</a>" ;
지금 제 경우에는 strlinkAddr 에는 URL + FileName이 들어가고 있는데, FileName에 공백이 들어가니깐 링크문제가 생겨 방법2를선택한 경우입니다.
방법2. 윈도우의 Status Bar에 해당 값들이 보이지 않으며 링크 정보가 나오지 않는다.
위의 방법과 동일한 목적을 가지고 있지만 value에 공백(스페이스)이 있어도 링크가 잘리는 일이 없어서 유용하게 사용될 수 있다.
string link = "rowSelect('"+ stridx +"','" + strlinkAddr + "','"+ strlenFrTop + "','"+ strlenFrLeft + "','"+ strwinWidth + "','"+ strwinHeight + "','"+ strshowYN + "','"+ strshowDivision + "','"+ strshowLevel + "','"+ strshowUser + "')" ;
lblLinkAddr.Text = "<a onclick=\"javascript:"+ link +"\" style='CURSOR:hand'>"+strlinkAddr+"</a>";
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] html 에서 서버주석 달기 (0) | 2015.11.25 |
---|---|
[ASP.NET] The project type is not supported by this installation (0) | 2015.11.25 |
[ASP.NET] Control '컨트롤명' of type 'TextBox' must be placed inside a form tag with runat=server (0) | 2015.11.23 |
[ASP.NET] Button Control 유용한 속성 (UseSubmitBehavior) (0) | 2015.11.23 |
[ASP.NET] SQL Server Dependency Cache 설정 (0) | 2015.11.23 |