[RadioButtonList] 자바스크립트로 선택체크하기
웹페이지
<script type="text/javascript">
function CheckYack(clientID){
var arrayYack = document.getElementsByName(clientID);
alert(arrayYack[0].checked );
}
</script>
<asp:RadioButtonList ID="RadioButtonList1" runat="server"
RepeatDirection="Horizontal">
<asp:ListItem Value="1">동의</asp:ListItem>
<asp:ListItem Selected="True" Value="0">동의안함</asp:ListItem>
</asp:RadioButtonList>
<asp:ImageButton ID="ImageButton1" runat="server"
ImageUrl="../image/appl/bt_next.gif" onclick="ImageButton1_Click" />
비하인드 코드
protected void Page_Load(object sender, EventArgs e)
{
ImageButton1.Attributes.Add("onClick", "return CheckYack('" + this.RadioButtonList1.UniqueID + "')");
}
'ASP.NET AJAX' 카테고리의 다른 글
데이터바인딩 방법 (0) | 2010.01.11 |
---|---|
텍스트 박스에서 엔터(이미지버튼) 실행하기 (0) | 2010.01.11 |
[MSDN]globalization 요소(ASP.NET 설정 스키마) (0) | 2010.01.11 |
[ClientScriptManager,javascript , 자바스크립트] 클라이언트측 스크립트를 관리,추가 (0) | 2009.12.15 |
[ DataList ,데이타 리스트,datatable,데이터테이블 ] 임의의 값(?) 바인딩 (0) | 2009.12.15 |
BLOB 저장된 이미지 웹상에 출력하기 (0) | 2009.12.15 |
간단한 Web.config connectionStrings 암호화 방법 (0) | 2009.12.15 |
최대 요청 길이를 초과했습니다.오류 해결방법 (0) | 2009.12.15 |
IIS에서 웹 서비스 확장을 눌러보면 ASP.NET 2.0 이 안보인다 (0) | 2009.12.15 |
[MSDN]Application_Error 를 통한 오류처리 (0) | 2009.12.15 |