⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nilaimahasiswaadd.jsp

📁 sistem information for universitas
💻 JSP
字号:
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%><%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><%@include file="../header.jsp"%><table border="0" cellpadding="0" cellspacing="4" width="100%">    <tr>        <td valign="top" width="160px"><%@include file="../userLink.jsp"%></td>        <td valign="top">            NILAI MAHASISWA ADD :: ${mahasiswa.nomorInduk} :: ${mahasiswa.nama}            <html:form action="/nilaiMahasiswaAdd.do?method=insert" method="post">                <table border="0" cellpadding="0" cellspacing="4">                    <html:hidden property="mahasiswa"/>                    <tr>                        <td>Matakuliah</td>                        <td>:</td>                        <td>                            <html:select property="matakuliah">                                <c:forEach items="${listMatakuliah}" var="matakuliah">                                    <html:option value="${matakuliah.id}">${matakuliah.kode} :: ${matakuliah.nama}</html:option>                                </c:forEach>                            </html:select>                        </td>                    </tr>                    <tr>                        <td>Nilai</td>                        <td>:</td>                        <td>                            <html:select property="nilai">                                <html:option value="A">A</html:option>                                <html:option value="B">B</html:option>                                <html:option value="C">C</html:option>                                <html:option value="D">D</html:option>                                <html:option value="E">E</html:option>                            </html:select>                        </td>                    </tr>                    <tr>                        <td colspan="2">&nbsp;</td>                        <td><html:submit property="aksi" value="Add"/></td>                    </tr>                </table>            </html:form>        </td>    </tr></table><%@include file="../footer.jsp"%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -