代码如下: 
protected void Page_Load(object sender, EventArgs e)
    {
        //http://localhost:11279/WebEleProduct/downvideo.aspx?scrsize=240X320&sc=1&pl=100&itemid=2&ver=1.0.0.0        this.GetRegularParas();
        ObjReqParasColl.Recordtable = "videofile";
        ObjReqParasColl.Suffix = "'~/downfile/'+VideoDownPath+'/'+Videoname+'.3gp'";
        ObjReqParasColl.TblName = "P_Video";
        ObjReqParasColl.FldName = "videoid";        this.SetSerachFileBehavior(new SerachFileCommon(ObjReqParasColl)); //获得列表
        this.PerFormSerachFile();        this.SetRecordLogBehavior(new RecordLogCommon(ObjReqParasColl));                //记录数据
        this.PerFormRecordLog();        this.JumpPage();
    }
有木有“返回值”,个人是认为木有返回值!

解决方案 »

  1.   

    protected void Page_Load(object sender, EventArgs e){
    .......
    ......
    }
    敢返回么??求解。
      

  2.   

    if(!IsPostBack)
    {
        ......
    }
      

  3.   

    if(!IsPostBack)
    {
      ......
    }
      

  4.   

    对你没返回,你也不能使用这个返回.
    对编译器有返回.以下是最简单的一个void Main Method的IL代码.看到那句 " IL_000c:  ret" 没.. 
    它返回了... 
    呵呵,我是不是在偷换概念呢?
    .method public static void  Main() cil managed
    {
      .entrypoint
      .custom instance void [mscorlib]System.STAThreadAttribute::.ctor() = ( 01 00 00 00 ) 
      // Code size       13 (0xd)
      .maxstack  1
      .locals init ([0] class [System.Data]System.Data.DataTable dt)
      IL_0000:  newobj     instance void [System.Data]System.Data.DataTable::.ctor()
      IL_0005:  stloc.0
      IL_0006:  ldloc.0
      IL_0007:  callvirt   instance void [System]System.ComponentModel.MarshalByValueComponent::Dispose()
      IL_000c:  ret
    } // end of method Module1::Main
      

  5.   

    protected void Page_Load(object sender, EventArgs e)
      {
       ...
      }
     
    关键字“void”
    这个能返回么?
    求高手+++++++