ResourceManager manager = new ResourceManager( this.GetType() );
         ResourceSet resources = manager.GetResourceSet(System.Globalization.CultureInfo.CurrentCulture, true, true);         if( !Page.IsStartupScriptRegistered( "SkySword.WebControls.PowerDataGrid Style" ) ) {
            Page.RegisterStartupScript( "SkySword.WebControls.PowerDataGrid Style", gridStyle );
         }         if(this.IsShowCheckAll){
            if( !Page.IsStartupScriptRegistered( "SkySword.WebControls.PowerDataGrid Check" ) ) {
               String script = resources.GetString("CheckScript");
               this.Page.RegisterClientScriptBlock("SkySword.WebControls.PowerDataGrid Check", script );
            }
         }         if(this.IsShowScorll){
            if( !Page.IsStartupScriptRegistered( "SkySword.WebControls.PowerDataGrid Scroll" ) ) {
               String script = resources.GetString("ScrollTable");
               this.Page.RegisterClientScriptBlock("SkySword.WebControls.PowerDataGrid Scroll", script );
               this.Page.RegisterStartupScript("SkySword.WebControls.PowerDataGrid Init", "<script>makeScrollableTable('"+this.ID+"',true,'"+this.Height.Value.ToString()+"');</script>" );
            }
         }
请问上边这段代码中引用的资源文件是哪一个?  看了很久都没能搞懂,非常郁闷!