show_view_tech_bonus2.asp
来自「这是一个自己研发的薪酬管理系统」· ASP 代码 · 共 67 行
ASP
67 行
<TR CLASS='TABLEDATA' ALIGN=CENTER>
<TD>
<% Response.write (mInt_Page-1)*mInt_CountPerPage+Int_Count %>
</TD>
<TD>
<%
Response.write Str_project_name
%>
</TD>
<TD>
<%
Response.write Str_employee_name
%>
</TD>
<TD>
<%
Response.write Str_tbonus_fprize
%>
</TD>
<TD>
<%
if Str_tbonus_fisgive="True" then
response.write("<font color=red>已发放</font>")
else
%>
<INPUT ID=Chk_Select NAME=ChkID TYPE=CHECKBOX VALUE='<% =Str_tbonus_fprize %>' onclick="countnum(this)">
<%end if%>
</TD>
<TD>
<%
if isdate(Str_tbonus_fdate) then
Response.write (Val(FormatDate(Str_tbonus_fdate,"yyyy"))-gInt_BeginYear) & FormatDate(Str_tbonus_fdate,"年mm月dd日")
else
response.write("未定")
end if
%>
</TD>
<TD>
<%
Response.write Str_tbonus_lprize
%>
</TD>
<TD>
<%
if Str_tbonus_lisgive="True" then
response.write("<font color=red>已发放</font>")
elseif Str_tbonus_lprize=0 then
response.write("----")
else%>
<INPUT ID=Chk_Select NAME=ChkID TYPE=CHECKBOX VALUE='<% =Str_tbonus_lprize %>' onclick="countnum(this)">
<%end if%>
</TD>
<TD>
<%
if isdate(Str_tbonus_ldate) then
Response.write (Val(FormatDate(Str_tbonus_ldate,"yyyy"))-gInt_BeginYear) & FormatDate(Str_tbonus_ldate,"年mm月dd日")
elseif Str_tbonus_lprize=0 then
response.write("----")
else
response.write("未定")
end if
%>
</TD>
</TR>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?