1.ssi好像有个指令叫exec...可以试一下
2.生成shtml是什么意思?直接include就可以了啊,就像普通的html或者asp页面一样

解决方案 »

  1.   

    2。用什么语言都能生成shtml的啦,可能你还不是很熟悉原理,其实很简单的
      

  2.   

    哈哈,可能我不是很熟悉原理的,但我还是想知道怎样动态生成shtml
      

  3.   

    其实也就是写文件啦using System.IO;
    using System.Text;StreamWriter Sw = new StreamWriter(Server.MapPath("test.shtml"),false,Encoding.GetEncoding("GB2312"));
    Sw.Write("<html><body>TEST</body></html>");
    Sw.Flush();
    Sw.Close();