SOGO論壇
  登入   註冊   找回密碼
查看: 2116|回覆: 1
列印 上一主題 下一主題

[問題求助] 指定的引數超出有效值的範圍。參數名稱: index 請問該如何修改 [複製連結]

Rank: 1

狀態︰ 離線
跳轉到指定樓層
1
發表於 2012-12-16 10:41:37 |只看該作者 |倒序瀏覽
本帖最後由 t2311y 於 2012-12-16 10:43 編輯

Protected Sub Button_list_dir_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button_list_dir.Click
        Dim dir_current_path As String
        Dim dir_current_root_path As String
        Dim folder, folder_names(), sub_dir As DirectoryInfo
        Dim File_Names(), sub_file As FileInfo
        Dim file_name_url As String = ""
        Dim row As TableRow
        Dim cell_1, cell_2, cell_3, cell_4 As TableCell
        Dim url As String = ""
        Dim encode_url As String
        dir_current_path = file_location & message_current_dir.Text
        dir_current_root_path = Server.MapPath(dir_current_path)
        folder = New DirectoryInfo(dir_current_root_path)
        folder_names = folder.GetDirectories()
        File_Names = folder.GetFiles()

        row = New TableRow
        cell_1 = New TableCell()
        cell_2 = New TableCell()
        cell_3 = New TableCell()
        cell_4 = New TableCell()
        cell_1.Text = "檔案名稱"
        row.Cells.Add(cell_1)
        row.Cells(0).Width = row.Cells(1).Width.Pixel(200)
        row.Cells(0).HorizontalAlign = HorizontalAlign.Center
        row.Cells(0).BackColor = row.Cells(0).BackColor.LightCyan
        cell_2.Text = "檔案大小"
        row.Cells.Add(cell_2)
        row.Cells(1).Width = row.Cells(1).Width.Pixel(200)
        row.Cells(1).HorizontalAlign = HorizontalAlign.Center
        row.Cells(1).BackColor = row.Cells(1).BackColor.LightCyan
        cell_3.Text = "檔案日期"
        row.Cells.Add(cell_3)
        row.Cells(2).Width = row.Cells(1).Width.Pixel(200)
        row.Cells(2).HorizontalAlign = HorizontalAlign.Center
        row.Cells(2).BackColor = row.Cells(2).BackColor.LightCyan
        cell_2.Text = "檔案大小"
        row.Cells.Add(cell_4)
        row.Cells(3).Width = row.Cells(1).Width.Pixel(200)
        row.Cells(3).HorizontalAlign = HorizontalAlign.Center
        row.Cells(3).BackColor = row.Cells(2).BackColor.LightCyan
        Table_list.Rows.Add(row)

        For Each sub_dir In folder_names
            row = New TableRow()
            cell_1 = New TableCell()
            cell_2 = New TableCell()
            cell_3 = New TableCell()
            cell_4 = New TableCell()
            url = message_current_dir.Text & sub_dir.Name
            encode_url = Server.UrlPathEncode(url.ToString)
            cell_1.Text = "<a href=default.aspx?dir_name=" & encode_url & ">" & sub_dir.Name
            row.Cells.Add(cell_1)
            cell_2.Text = "<資料夾>"
            row.Cells.Add(cell_2)
            row.Cells(1).HorizontalAlign = HorizontalAlign.Right
            cell_3.Text = sub_dir.LastWriteTime
            row.Cells.Add(cell_3)
            row.Cells(2).HorizontalAlign = HorizontalAlign.Right
            cell_4.Text = "<a target=_black href=dir_rename.aspx?dir_name=" & encode_url & ">更名" & "|" & "<a target=_black href=dir_delete.aspx?dir_name=" & encode_url & ">刪除"
            row.Cells.Add(cell_4)
            row.Cells(3).HorizontalAlign = HorizontalAlign.Center
            Table_list.Rows.Add(row)

        Next

        For Each sub_file In File_Names
            row = New TableRow()
            cell_1 = New TableCell()
            cell_2 = New TableCell()
            cell_3 = New TableCell()
            cell_4 = New TableCell()
            url = message_current_dir.Text & sub_file.Name
            encode_url = Server.UrlEncode(url.ToString)
            cell_1.Text = "<a href=get_file.aspx?name=" & encode_url & ">" & sub_file.Name
            row.Cells.Add(cell_1)
            cell_2.Text = sub_file.Length
            cell_2.Text = sub_file.Length.ToString("###,###")
            row.Cells(1).HorizontalAlign = HorizontalAlign.Right
            cell_3.Text = sub_file.LastWriteTime
            row.Cells.Add(cell_3)
            row.Cells(2).HorizontalAlign = HorizontalAlign.Right
            cell_4.Text = "<a target=_black href=file_rename.aspx?name=" & encode_url & ">更名" & "|" & "<a target=_black href=file_delete.aspx?name=" & encode_url & ">刪除"
            row.Cells.Add(cell_4)
            row.Cells(3).HorizontalAlign = HorizontalAlign.Center
            Table_list.Rows.Add(row)
        Next
        Table_list.Visible = True
    End Sub
End Class

這是我的程式~

行 156:            cell_2.Text = sub_file.Length
行 157:            cell_2.Text = sub_file.Length.ToString("###,###")
行 158:            row.Cells(1).HorizontalAlign = HorizontalAlign.Right
行 159:            cell_3.Text = sub_file.LastWriteTime
行 160:            row.Cells.Add(cell_3)

這第158行跳出錯誤~請問該如何修改
這是一個目錄
按顯示資料夾內容假如裡面沒東西就跑出空資料夾
但假如一放東西就跳出
指定的引數超出有效值的範圍。參數名稱: index
喜歡嗎?分享這篇文章給親朋好友︰
               感謝作者     

Rank: 5Rank: 5

狀態︰ 離線
2
發表於 2012-12-18 22:34:17 |只看該作者
痾,你忘了從0開始啊老兄。

你154 add 1個東西
index 0 有了第一個東西
所以158之後的  row.Cells(X)...都改成row.Cells(X - 1)...
已有 1 人評分威望 收起 理由
紅塵孤鳥 + 1 感謝您熱心幫助會員解決問題,論壇需要您的.

總評分: 威望 + 1   查看全部評分

請注意︰利用多帳號發表自問自答的業配文置入性行銷廣告者,將直接禁訪或刪除帳號及全部文章!
您需要登錄後才可以回覆 登入 | 註冊


本論壇為非營利自由討論平台,所有個人言論不代表本站立場。文章內容如有涉及侵權,請通知管理人員,將立即刪除相關文章資料。侵權申訴或移除要求:abuse@oursogo.com

GMT+8, 2025-1-23 12:23

© 2004-2025 SOGO論壇 OURSOGO.COM
回頂部