Tải bản đầy đủ (.doc) (3 trang)

Tài liệu Bài thực hành số 1: Truy nhập các điều khiển trên Form ppt

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (123.35 KB, 3 trang )

Bài thực hành số 1: Truy nhập các điều khiển trên Form
Yêu cầu: - Thiết kế Form như hình 1 dưới đây
- Sau khi nhập thông tin trên Form nhất nút Xem sẽ cho ra kết quả như
hình 2
Hình 1





File Nhap.asp
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Ho va ten</title>
</head>
<body>
GV: LÊ ANH TÚ - Bộ môn Mạng & Truyền thông – Khoa CNTT ĐH Thái Nguyên
1
Hình 2
Bài thực hành số 1: Truy nhập các điều khiển trên Form
<form method="POST" action="xuly_nhap.asp">
<table border="1" width="53%" id="table1" bgcolor="#C0C0C0">
<tr> <td width="107">Ho va ten</td>
<td><input type="text" name="txthoten" size="20"></td> </tr>
<tr>
<td width="107">Gioi tinh</td>
<td><input type="radio" value="Nam" checked name="rdogt">Nam
<input type="radio" name="rdogt" value="Nu">Nu</td>
</tr>


<tr>
<td width="107">Ngay sinh</td>
<td>
Ngay<select size="1" name="optNgay">
<%for i=1 to 31%>
<option value=<%=i%>><%=i%></option>
<%Next%>
</select>
Thang<select size="1" name="optthang">
<%for i=1 to 12%>
<option value=<%=i%>><%=i%></option>
<%Next%>
</select>
Nam<select size="1" name="optNam">
<%for i=1970 to year(date())%>
<option value=<%=i%>><%=i%></option>
<%Next%>
</select></td>
</tr>
<tr>
<td width="107" height="53">So thich</td>
<td height="53">
<input type="checkbox" name="chksothich" value="Du lich">Du lich
<input type="checkbox" name="chksothich" value="The thao">The thao
<input type="checkbox" name="chksothich" value="Ca nhac"> Ca nhac
<p><input type="checkbox" name="chksothich" value="Tin hoc"> Tin hoc
<input type="checkbox" name="chksothich" value="Nau an"> Nau an<input
type="checkbox" name="chksothich" value="Mua sam"> Mua sam</td>
</tr>
<tr>

<td width="107">Ghi chu</td>
<td><textarea rows="6" name="txtaGhichu" cols="29"></textarea></td>
</tr>
</table>
<input type="submit" value=" Xem " name="cmdXem">
<input type="reset" value="Nhap lai" name="cmdnhaplai">
</form>
</body>
</html>
GV: LÊ ANH TÚ - Bộ môn Mạng & Truyền thông – Khoa CNTT ĐH Thái Nguyên
2
Bài thực hành số 1: Truy nhập các điều khiển trên Form
File Xuly_nhap.asp
<%
response.write "Ho va ten: " & request.form("txthoten") & "<br>"
response.write "Gioi tinh: " & request.form("rdogt") & "<br>"
ngaysinh=request.form("optngay") & "/" & request.form("optthang") & "/" &
request.form("optnam")
response.write "Ngay sinh: " & Ngaysinh & "<br>"
response.write "So thich: " & request.form("chksothich") & "<br>"
response.write "Ghi chu: " & request.form("txtaGhichu") & "<br>"
%>
<a href=nhap.asp>Quay lai</a>
GV: LÊ ANH TÚ - Bộ môn Mạng & Truyền thông – Khoa CNTT ĐH Thái Nguyên
3

×