如题,注意是web服务器,求求发布的方法,是.net自带的,最好有注册码

解决方案 »

  1.   

    在web服务器上.装打包,发布,布署工具(水晶报表公司的)
    你搜索一下csdn上很多
      

  2.   

    VS 2003.NET的水晶报表是可以带注册码打包的,但你要到水晶报表的站点注册一个免费帐号,利用这个免费帐号可以申请到一个你专用的注册码,可以用于商业软件。
    我用过多次了。
      

  3.   

    我做过,要打包到web 服务器上安装,现在的问题,你是否可使用服务器或者你的空间商是否愿意给你装,关于打包的方法,网上很多.不需要购买水晶报表.
      

  4.   

    嵌套数据控件实现层次数据的显示
    现在你可以使用Repeater嵌套DataList,或者DataList嵌套Repeater,简言之,你可以使用Repeater,DataList,DataGrid这三个控件的任意组合进行嵌套.在本文,将使用比较简单的Repeater嵌套Repeater做为例子,方便理解
    请在上面的代码添加如下两句数据绑定的代码:
     ParentRepeater.DataSource=objDs.Tables("jobs").DefaultView
     ParentRepeater.DataBind()
    然后在html里加入下面的代码:
     <asp:repeater id="ParentRepeater" runat="server">
      <itemtemplate>
         职位:<%# DataBinder.Eval(Container.DataItem,"job_desc") %><br>
           <asp:repeater id="ParentRepeater" runat="server" DataSource='<%# Ctype(Container.DataItem,DataRowView).CreateChildView("RelationName") %>'>
               <itemtemplate>
                  职员:<%# DataBinder.Eval(Container.DataItem,"lname") %>
                       <%# DataBinder.Eval(Container.DataItem,"fname") %>
               </itemtemplate>    
           </asp:repeater>
       </itemtemplate>
     </asp:repeater>博客园的.
      

  5.   

    vs.net2003水晶报表注册码 
    注册号:6707437608 
    密码:AAP5GKS0000GDE100DS
      

  6.   

    楼住vs自己带的不行,我试了n遍了,不过装了一个report9.0以后就ok!