如这种连接,是什么技术?
http://www.test.com/Power/Create.aspx?rd=0.5108937072919611201187151629937&ajax=true

解决方案 »

  1.   

    Server Error in '/' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.Requested URL: /Power/Create.aspx
      

  2.   

    http://topic.csdn.net/u/20110807/15/22ce5a40-a014-44ee-bf09-9444bc05db6b.html?81605#r_achor这是这个帖子“回复”的链接,比你那个“rd=”做的隐蔽多了...不过是个随机数参数,相当于版本控制...
      

  3.   

    querystring技术,asp.net技术,webforms技术,Random.Next()技术,C#技术,Page_Load()技术……很高深的技术啊。
      

  4.   

    随机数可以避免网页被缓存。因为每次访问的URI都不一样,缓存的网页对下一次访问无作用。
      

  5.   

    可能网页使用了ajax,这个容易产生缓存。那个数字就是一个随机数,每次都不一样,这样可以避免缓存。只是效率有点低。