大家好~~我是初学的,有人能帮写个输入数值自动加计后且写出大写吗?先谢谢了!
[local]1[/local]程序代码:
’页面shenqing.asp <!-- #include file="conn.asp" --> <% sql="select * from config" set rs_config=conn.execute(sql) biaoji=rs_config("biaoji") %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title><%=biaoji%>-系统-</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> </head> <body> <div> <form method="get" name="b_c" id="b_c"> 现金申请: <input type="radio" name="pc_or_pb" value="pc"> 银行申请: <input type="radio" name="pc_or_pb" value="pb"> <input type="submit" name="Submit" value="提交"> </form> </div> <%if request("pc_or_pb")="pb" then%> <div id="pb_shenqing"> <center> <h1>银行付款申请单</h1> <form name="pb_shenqing" method="post" action="pb_shenqing_do.asp"> <div> <dl> <table width="600" border="0" cellpadding="0" cellspacing="0"> <dt>以下均为必填项:</dt> <dd>申 请 人:<input type="text" name="username" class="text" /></dd> <dd>日 期:<input type="text" name="sq_date" class="text" /></dd> <dd>收款单位:<input type="text" name="skr" class="text" /></dd> <dd>帐 号:<input type="text" name="zh" class="text" /></dd> <dd>开 户 行:<input type="text" name="khh" class="text" /></dd> <dd>事 由:<input type="text" name="sy" class="text" /></dd> <dd>¥:<input type="text" name="je" class="text" /></dd> <dd>发票情况:<input type="text" name="fp" class="text" /></dd> <dd>备 注:<input type="text" name="bz" class="text" /></dd> </table> <dd><input type="submit" value="提交" name="send" class="submit" /></dd> </dl> </table> </div> </form> </center> </div> <%else%> <div id="pc_shenqing"> <center> <h1>现金支出(费用报销)单</h1> <form name="pc_shenqing" method="post" action="pc_shenqing_do.asp"> <div> <dl> <table width="600" border="0" cellpadding="0" cellspacing="0"> <dt>以下均为必填项:</dt> <dd>部 门:<input type="text" name="bm" class="text" /></dd> <dd>报 帐 人:<input type="text" name="username" class="text" /></dd> <dd>送达日期:<input type="text" name="sq_date" class="text" /></dd> <dd>事由1:<input type="text" name="sy01" class="text" />¥:<input type="text" name="je01" class="text" /></dd> <dd>事由2:<input type="text" name="sy02" class="text" />¥:<input type="text" name="je02" class="text" /></dd> <dd>事由3:<input type="text" name="sy03" class="text" />¥:<input type="text" name="je03" class="text" /></dd> <dd>事由4:<input type="text" name="sy04" class="text" />¥:<input type="text" name="je04" class="text" /></dd> <dd>合计(大写):¥:</dd> <dd>备 注:<input type="text" name="bz" class="text" /></dd> </table> <dd><input type="submit" value="提交" name="send" class="submit" /></dd> </dl> </table> </div> </form> </center> </div> <%end if%> </body> </html>