ClassicASP 데이타 합치기
페이지 정보
본문
<form name="form" method="post" action="">
<input type="text" name="phone1" value="012" />
<input type="text" name="phone2" value="3456" />
<input type="text" name="phone3" value="7890" />
</form>
<%
phone= Request("phone1") &"-"& Request("phone2") &"-"& Request("phone3")
%>
phone 값에는 012-3456-7890 값이 삽입된다.
<input type="text" name="phone1" value="012" />
<input type="text" name="phone2" value="3456" />
<input type="text" name="phone3" value="7890" />
</form>
<%
phone= Request("phone1") &"-"& Request("phone2") &"-"& Request("phone3")
%>
phone 값에는 012-3456-7890 값이 삽입된다.
댓글목록
등록된 댓글이 없습니다.