本页面定义为javascript.aspx
<%@ Page Language="C#" AutoEventWireup="true" %><% string protype = "var rows=["; for (int i = 0; i < 100; i++) { protype += "{name:'tich_" + i + "',values:'wabt" + i + "iso59-1'}"; if (i < 99) protype += ","; } protype += "];"; Response.Clear(); Response.ContentType = "text/javascript"; Response.ContentEncoding = Encoding.UTF8; Response.Write(protype); Response.End();%>
动态输出javascript内容