• AJax错误"WebForm1"没有定义的javascript错误的解决方法


           笔者在研究QuickGuide.txt的文章同时,按照顺序一步步的做法,结果运行时,发现老是出现这样的错误 ,"WebForm1"没有定义的javascript错误,换了以该项目为根目录,错误照旧
       使用google在网络里查询,结果发现很多朋友也发生同样的错误.
        于是产生欢迎该dll是否download的不正确. 但是照着文档资料查询了一下
        
    private void Page_Load(object sender, System.EventArgs e)
      {
       // 在此处放置用户代码以初始化页面
       Ajax.Utility.RegisterTypeForAjax(typeof(WebForm1));  
      }

    这里设置后,web里面会产生代码
    <script type="text/javascript" src="/ajax/common.ashx"></script>
     <script type="text/javascript" src="/ajax/AJAX_Test.WebForm1,AJAX_Test.ashx"></script>

    这证明dll能够发生作用,也就是说该dll能正常运行.到底错误怎么产生的呢??

    根据 

    The call to RegisterTypeForAjax emits the following JavaScript on the page (alternatively, you could manually place the following two lines on the page):

    <script language="javascript" src="ajax/common.ashx"></script>

    <script language="javascript"
               src="ajax/NAMESPACE.PAGECLASS,ASSEMBLYNAME.ashx"></script>

     Where the bolded parts have the following meaning:

    NAMESPACE.PAGECLASS

    The namespace and class of the current page

    (this will typically be the value of the Inherits attribute in the @Page directive)

    ASSEMBLYNAME

    The name of the assembly the current page is part of

    (this will typically be the name of your project)


    发现该产生的code 必须是ajax/为根的,所以按照上面描述,人工加上一段code在aspx文件里
    <script type="text/javascript" src="ajax/common.ashx"></script>
     <script type="text/javascript" src="ajax/AJAX_Test.WebForm1,AJAX_Test.ashx"></script>

    private void Page_Load(object sender, System.EventArgs e)
      {
       // 在此处放置用户代码以初始化页面
      // Ajax.Utility.RegisterTypeForAjax(typeof(WebForm1));    注销这段代码
      }
    结果运行正确.
      得到的结论是,可能是该ajax的一个小Bug,产生的js代码不对.但是可以根据上述的规则人为添加js代码

  • 相关阅读:
    快速排序
    将指定目录下的所有子文件或子目录加载到TreeView
    导入英汉文本,用字符串切割,泛型集合存储的英汉字典
    取年月日的字符串方法
    简化的MVC-导入模板HTML,导入数据txt,用字符串方法生成JS菜单
    索引器的使用
    打开文件练习
    泛型委托
    将正则表达式转化成确定的有限自动机
    青蛙过桥
  • 原文地址:https://www.cnblogs.com/meetweb/p/285838.html
Copyright © 2020-2023  润新知