43 lines
1.7 KiB
Plaintext
43 lines
1.7 KiB
Plaintext
<!--#include virtual="/common/lib/dbcon.asp"-->
|
|
<!-- #Include virtual = "/common/lib/func.asp" -->
|
|
<%
|
|
|
|
bdm_idx = InputValue( request.querystring("bdm_idx") )
|
|
|
|
If bdm_idx <> "" then
|
|
|
|
Set ST = New SelectTable
|
|
s_fields = "bdm_menuname, bdm_color"
|
|
sql = "select " & s_fields & " from bd_address where bdm_idx = '" & bdm_idx & "' "
|
|
Set rs = ST.selectQueryRecord( sql )
|
|
ST.arr2Value( rs )
|
|
|
|
%>
|
|
<input type="hidden" name="bdm_idx" value="<%=bdm_idx%>" />
|
|
<input type="text" name="bdm_menuname" value="<%=bdm_menuname%>" class="inp_basic" placeholder="그룹명" maxlength="50" />
|
|
<div class="group_color">
|
|
<ul>
|
|
<li><input type="radio" id="radio-2-6" name="bdm_color" value="1" <%=chkRadio(bdm_color, "1")%> /><label for="radio-2-6"></label></li>
|
|
<li><input type="radio" id="radio-2-7" name="bdm_color" value="2" <%=chkRadio(bdm_color, "2")%> /><label for="radio-2-7"></label></li>
|
|
<li><input type="radio" id="radio-2-8" name="bdm_color" value="3" <%=chkRadio(bdm_color, "3")%> /><label for="radio-2-8"></label></li>
|
|
<li><input type="radio" id="radio-2-9" name="bdm_color" value="4" <%=chkRadio(bdm_color, "4")%> /><label for="radio-2-9"></label></li>
|
|
<li><input type="radio" id="radio-2-10" name="bdm_color" value="5" <%=chkRadio(bdm_color, "5")%> /><label for="radio-2-10"></label></li>
|
|
</ul>
|
|
</div>
|
|
<div class="btngroup">
|
|
<ul class="btn_nrm column2">
|
|
<li><input type="submit" value="수정" class="nrm1" style="width:160px;" /></li>
|
|
<li><a href="#close" onclick="closeArea();" class="nrm2">취소</a></li>
|
|
</ul>
|
|
</div>
|
|
<%
|
|
|
|
End if
|
|
%>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(function(){
|
|
clickArea(detaillayer13,0);
|
|
});
|
|
//]]>
|
|
</script> |