SORRY,没做过这类的,只能帮你友情UP一下了!呵呵...

解决方案 »

  1.   

    没做过这样打包,我一般是做一个预加速程序,编译好服务器端后就直接调用IE打开的.
    对于多用户的,我是让客户选择IP或域名,然后在服务器端生成一个快捷式,让客户自己传送这个快捷式,但也有客户要求生成 一个HTML,只要输入IP就自己跳的.主要看需求
      

  2.   

    可惜我只对winform的打包比较的熟悉。现在不能帮助你什么了
      

  3.   

    请参考以下的代码,注意需要在自定义安装程序类中使用 [RunInstaller(true)]
     public class DBCustomAction : System.Configuration.Install.Installer
     {
       ...
       ...
       public override void Install(IDictionary stateSaver)
       {
       base.Install (stateSaver);
       string path =
    Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
       FileInfo fi = new FileInfo(path+"\\Test.url");
       string address = @"http://localhost/demo/default.htm";
       using (StreamWriter sw = fi.CreateText())
       {
        sw.WriteLine("[InternetShortcut]");
        sw.WriteLine("URL=" + address);
       }
       }
       ...
       ...
      }