当前位置: 首页 > 图文教程 > 网络编程 > ASP > NET移植案例学习:建造Web站点(7)

ASP
利用ASP将HTML格式数据传输给Excel 的技巧
用ASP CSS实现随机背景
用ASP实现在线文章翻译的功能
动态网页爱好者来看:Asp过滤HTML的函数
自动去除字符中含有html代码的几个ASP函数
用ASP对网页进行简单的保护
ASP网页开发过程中的几个小技巧
ASP动态网页制作中使用SQL语句的方法
ASP开发中存储过程应用全接触
入门:初学ASP动态网页制作常用错误处理
ASP动态网页下UTF-8页面乱码的解决方法
小技巧:解决ASP脚本运行超时的方法
动态网页制作技术ASP开发中的常见问题
动态网页技术ASP日期和时间函数示例
ASP程序实现保存参数值的分页功能
用ASP寻找到真实IP地址的方法
ASP中文显示解决技巧及创建对象方法
ASP实例:Asp 防止网页频繁刷新一法
将ASP动态网页转换成HTM静态页面的方法
技巧:得到刚刚插入的记录的自动编号值一例

ASP 中的 NET移植案例学习:建造Web站点(7)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 31 ::
收藏到网摘: n/a

    图5 客户端的验证逻辑

FormSubmitTest(problemTitle,bugDescription,buildVersion,cboProduct,
appLanguage,cboArea, cboSubArea,severity,build)
{
 var iG;
 var renl = "\r" + "\n";
 iG = 0;
 ResetArrowSize();
 if (problemTitle.value == "" ){ 
  document.images.item("ArrowProbTitle").width=8
  iG++
  }
 if (buildVersion.value == -1){
  document.images.item("ArrowBuildVersion").width=8
  iG++
 }
 if (buildVersion.value == ""){
  document.images.item("ArrowBuildVersion").width=8
  iG++
 }
 if (appLanguage.value == -1){
  document.images.item("ArrowAppLanguage").width=8
  iG++
 }
 if (cboProduct.value == ""){
  document.images.item("ArrowProductName").width=8
  iG++
 }
 if (cboArea.value == ""){
  document.images.item("ArrowProblemArea").width=8
  iG++
 }
 if (cboSubArea.value == ""){
  document.images.item("ArrowProblemSubArea").width=8
  iG++
 }
 if (severity.value == -1){
  document.images.item("ArrowSeverity").width=8
  iG++
 }
 if (bugDescription.value == "Problem Description:" + renl + renl + 
     "Steps to reproduce:" + renl + renl + "Expected behavior:" 
     + renl + renl + "Actual behavior:"+ renl + renl + renl){ 
  document.images.item("ArrowDescription").width=8
  iG++
 }
 if (bugDescription.value == ""){
  document.images.item("ArrowDescription").width=8
  iG++
 }
 if (iG != 0){
  alert("You are missing one or more of the required items 
     (indicated by the red arrow) needed to submit this form.")
  return false;
 }
 else{
  if (document.form1.bugDescription.value == "")
  {
   // don't submit
   alert("Please enter a problem description.")
   return false;
  }
 else{
  if (document.form1.bugDescription.value == "Problem 
     Description: 
     Steps to reproduce: Expected behavior: Actual 
     behavior:")
   {
    // don't submit
    alert("Please enter a problem description.")
    return false;
   }
  else{
   var buildval = build.value;
   var buildlen = buildval.length;
   file://alert(buildlen);
   if (buildlen <= 0)
   {
    var typ = buildVersion.type;
    if (typ == "text") file://build is a text box
    {
     var val = buildVersion.value;
     var len = val.length;
     if ((isNaN(val)) || (len != 4))
     {
      // don't submit
      alert("Please enter 'Build' using the 
         format 'NNNN'.")
      return false;
      }
    else
    {
     // concatenate the build number with 
      "07.00.00."
     buildVersion.value = "07.00.00." + 
     buildVersion.value
     // submit
     document.form1.method = "POST"
     document.form1.action = "lamegeneral.asp" 
     return true;
     }
    }
   else
   {
    // subm