File Manager
Back to List
|
Up to Parent Directory
| Current Directory: ~/eform
Editing: eform/edit_form.asp.bak
Full path: C:\ict\ICT\eform\edit_form.asp.bak
Permissions: rwx
Write test: File appears not directly writable
Current process identity: IIS APPPOOL\DefaultAppPool
<!--#INCLUDE FILE="ConnectDB.asp"--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-874" /> <title>��䢢�����Ẻ�����</title> <style type="text/css"> <!-- .style1 {color: #99ccff} --> </style> </head> <body> <form id="form1" name="form1" method="post" action="save_eform.asp"> <% id_form=request("id") sqlc="select * from eform where id_form='"&id_form&"'" set orsc=server.createobject("adodb.recordset") orsc.open sqlc,conn,1,3 if not orsc.eof then %> <table width="50%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td colspan="2" bgcolor="#003399"><div align="center" class="style1">��䢿�����͡���</div></td> </tr> <tr> <td>�����͡���</td> <td><input name="form_name" type="text" id="id_form" value=<%=orsc("id_form")%> /></td> </tr> <tr> <td>��������͡���</td> <td><input name="form_name" type="text" id="form_name" value=<%=orsc("form_name")%> /></td> </tr> <tr> <td>������� � �͡���</td> <td><textarea name="detail_form" cols="60" rows="3" id="detail_form" ><%=orsc("detail_form")%></textarea></td> </tr> <tr> <td>���Ե�дѺ</td> <td><select name="id_group" id="id_group"> <% id_group=orsc("id_group") set orscr=server.createobject("adodb.recordset") sqlcr="select * from group_form" orscr.open sqlcr,Conn,1,3 if not orscr.eof then orscr.movefirst do while not orscr.eof %> <option <% if cint(orscr("id_group"))=cint(id_group) then %> value=<%=id_group%> selected <%else%> value=<%=orscr("id_group")%> <%end if%>> <%=orscr("group_name")%> <%'=id_type_res%><%'=orsbt("id_type_res")%> </option> <% ' response.write "<option value="&orscr("id_group")&">"&orscr("group_name")&" </option>" orscr.movenext loop end if %> </select> </td> </tr> <tr> <td colspan="2" bgcolor="#003399"><div align="center"> <input type="submit" name="Submit" value="�ѹ�֡" /> </div></td> </tr> </table> <%end if%> </form> </body> </html>