반응형
if (ds.Tables[0].Rows.Count > 0)
{
string photo = ds.Tables[0].Rows[0]["AttachFileName"].ToString();
string[] arrPhoto = photo.Split(new char[] { '|' });
string photoIMG = "<img src=/LLR_AttachedFiles/UserParkBoardData/" + arrPhoto[0] + " border=0 width=47 height=54>";
this.lblPhoto2.Text = photoIMG;
}
'프로그래밍 > ASP.NET' 카테고리의 다른 글
새창에서 부모창 제어 (0) | 2013.10.16 |
---|---|
Repeater 에서 DateTime 간단히 설정하는 옵션 (0) | 2013.10.16 |
ASP.NET - Split() - 콤마로 구별된 개별상품 코드로 개별상품 명 반환 (0) | 2013.10.16 |
ASP.NET - 텍스트박스 이벤트 등록하기 (0) | 2013.10.16 |
ASP.NET 엑셀파일 출력시 숫자앞의 0 이 사라지는 현상 없애는 코딩 mso-number-format:\@ (0) | 2013.10.11 |