下面是我在做什麼,我有大量的報道,而不是複製和粘貼重複的代碼,我有以下..
public class ReportPage : System.Web.UI.Page
{
// Code
}
我的報告頁面有
public class MyReportPage : ReportPage
{
}
我遇到的問題是,我希望能夠訪問ReportPage內的MyReportPa
假設用戶輸入他的文件。格式是這樣的: Name\t182909876\n
Name 2\t090090090\n
etc...
我想繪製這個數據到圖表,網格或表格。 data_list = []
with infile as f:
data = [map(str, line.split('\t')) for line in f]