Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/react-native/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 尝试从数据库读取数据/在c上显示表_C#_Sql - Fatal编程技术网

C# 尝试从数据库读取数据/在c上显示表

C# 尝试从数据库读取数据/在c上显示表,c#,sql,C#,Sql,我对SQL Server/C有些陌生 我的老师认为我应该使用SqlConnection和SqlCommand使用C将数据写入数据库 我有一个朋友希望我在她的项目上帮助她,但我不知道如何从数据库中获取数据或如何从数据库中显示表 希望有人觉得这个问题有用,尤其是初学者 另外,如何获取行中的特定元素?使用相同的sqlConnection和SqlCommand,SqlReader对象类通过Select查询从数据库获取数据,如果需要,可以通过datagrid显示数据。只需搜索SO或谷歌。MSDN也有一个很

我对SQL Server/C有些陌生

我的老师认为我应该使用SqlConnection和SqlCommand使用C将数据写入数据库

我有一个朋友希望我在她的项目上帮助她,但我不知道如何从数据库中获取数据或如何从数据库中显示表

希望有人觉得这个问题有用,尤其是初学者


另外,如何获取行中的特定元素?

使用相同的sqlConnection和SqlCommand,SqlReader对象类通过Select查询从数据库获取数据,如果需要,可以通过datagrid显示数据。只需搜索SO或谷歌。MSDN也有一个很好的例子。

如果您使用的是windows窗体,那么也许您可以使用DataGridView控件-请参阅此非常简单的教程以开始学习:


类似地,对于web应用程序,您可以使用GridView控件-有关各种示例,请参见MSDN:

使用此搜索并将System.Data.OleDB替换为System.Data.SqlClient:

    public override System.Data.DataTable GetDataTable(string strSQL)
    {
        System.Data.DataTable dt = new System.Data.DataTable();

        using (System.Data.IDbConnection idb = GetConnection())
        {

            lock (idb)
            {
                try
                {

                    using (System.Data.OleDb.OleDbDataAdapter daQueryTable = new System.Data.OleDb.OleDbDataAdapter(strSQL, (System.Data.OleDb.OleDbConnection) idb))
                    {
                        daQueryTable.Fill(dt);
                    } // End Using daQueryTable
                } // End Try
                catch (Exception ex)
                {
                    Log("cOleDB.GetDataTable(string strSQL)", ex, strSQL);
                } // End Catch
                finally
                {
                    if (idb.State != System.Data.ConnectionState.Closed)
                        idb.Close();
                } // End Finally

            } // End Lock idb

        } // End Using idb

        return dt;
    } // End Function GetDataTable





    public System.Data.IDbConnection GetConnection()
    {
        System.Data.OleDb.OleDbConnection oledbc= new System.Data.OleDb.OleDbConnection(m_ConnectionString.ConnectionString);

        return oledbc;
    }
有关有效的连接字符串,请转到:

以下是VBish版本:

Namespace SQL


    Public Class MS_SQL

        Public Const strDefaultCatalog As String = "AdventureWorks"


        Public Shared Function GetConnectionString(Optional ByRef strIntitialCatalog As String = strDefaultCatalog) As String

            Return strConnectionString
        End Function ' GetConnectionString


        Public Shared Function GetConnection(ByVal strConnectionString As String)
            'GetConnectionString(strDataBaseName)

            Return New System.Data.SqlClient.SqlConnection(strConnectionString)
        End Function


        Public Shared Function GetConnection() As System.Data.IDbConnection
            Static strConnectionString As String = GetConnectionString()

            Return New System.Data.SqlClient.SqlConnection(strConnectionString)
        End Function ' GetConnection


        Public Shared Function TestConnection() As Boolean
            Dim bExceptionOccured As Boolean = False

            Using dbConnection As System.Data.IDbConnection = GetConnection()

                SyncLock dbConnection

                    Try
                        'Console.WriteLine("Connection timout: " + dbConnection.ConnectionTimeout.ToString)
                        If Not dbConnection.State = ConnectionState.Open Then
                            dbConnection.Open()
                        End If
                    Catch ex As Exception
                        bExceptionOccured = True
                        'Log.File.WriteText("Error opening the database connection. Check your connection string and password as well as networking and permissions.")
                        Log.File.WriteText("Fehler beim Öffnen der Datenbankverbindung. Bitte überprüfen Sie den Verbindungsstring und das Passwort, sowie das Netzwerk und Berechtigungen.")
                        'Log.File.WriteText("Exception message:")
                        Log.File.WriteText("Fehlerbeschreibung:")
                        Console.WriteLine(ex.Message)
                        ErrorHandling.Exception.iExitCode = ErrorHandling.Exception.ExitCode.EXIT_DATABASE_NOCONNECT
                        'MsgBox("Connection couldn't be opened.", MsgBoxStyle.Critical)
                        ErrorHandling.Exception.TerminateWithErrorcode(ErrorHandling.Exception.ExitCode.EXIT_DATABASE_NOCONNECT)
                    Finally
                        If Not dbConnection.State = ConnectionState.Closed Then
                            dbConnection.Close()
                        End If
                    End Try

                End SyncLock ' dbConnection

            End Using ' dbConnection

            Return bExceptionOccured
        End Function ' TestConnection


        Public Shared Function GetEmbeddedSQLscript(ByVal strSearchedFileName As String) As String
            Dim ass As System.Reflection.Assembly = System.Reflection.Assembly.GetAssembly(GetType(MS_SQL))

            If String.IsNullOrEmpty(strSearchedFileName) Then
                Throw New ArgumentNullException("strSearchedFileName")
            End If

            Dim strFoundRessourceName As String = Nothing
            For Each strEmbeddedRessourceName As String In ass.GetManifestResourceNames()
                If Not String.IsNullOrEmpty(strEmbeddedRessourceName) Then

                    If strEmbeddedRessourceName.EndsWith(strSearchedFileName, System.StringComparison.OrdinalIgnoreCase) Then
                        strFoundRessourceName = strEmbeddedRessourceName
                        Exit For
                    End If
                    ' Console.WriteLine(strEmbeddedRessourceName)
                End If
            Next

            If String.IsNullOrEmpty(strFoundRessourceName) Then
                Throw New Exception("The script """ + strSearchedFileName + """ is not present in the embedded ressources section.")
            Else
                'Console.WriteLine(strFoundRessourceName)
            End If

            Dim strSQLscript As String = Nothing
            Try
                Using strmRessource As System.IO.Stream = ass.GetManifestResourceStream(strFoundRessourceName)

                    Using srRessourceReader As New System.IO.StreamReader(strmRessource)
                        strSQLscript = srRessourceReader.ReadToEnd()
                        srRessourceReader.Close()
                    End Using

                    strmRessource.Close()
                End Using
            Catch ex As Exception
                Throw
            End Try

            Return strSQLscript
        End Function ' GetEmbeddedSQLscript


        Public Class cParameterStore

            Public Class cParameter
                Public SqlDbType As System.Data.SqlDbType = Nothing
                Protected m_Value As Object = Nothing


                Public Sub New(ByVal dbt As System.Data.SqlDbType, ByVal objValue As Object)
                    Me.SqlDbType = dbt
                    Me.Value = objValue
                End Sub ' Constructor


                Public Property Value() As Object

                    Get
                        Return Me.m_Value
                    End Get

                    Set(ByVal objValue As Object)
                        If objValue IsNot Nothing Then
                            Me.m_Value = objValue
                        Else
                            Me.m_Value = System.DBNull.Value
                        End If
                    End Set

                End Property ' Value

            End Class ' cParameter


            Public m_dictParameters As Dictionary(Of String, cParameter) = Nothing


            Sub New()
                Me.m_dictParameters = New Dictionary(Of String, cParameter)
            End Sub ' Constructor


            Public ReadOnly Property Parameters() As Dictionary(Of String, cParameter)

                Get
                    Return Me.m_dictParameters
                End Get

            End Property ' Parameters


            Public Sub Add(ByVal strKey As String, ByVal dbt As System.Data.SqlDbType, ByVal objValue As Object)
                If String.IsNullOrEmpty(strKey) Then
                    Throw New ArgumentNullException("strKey")
                End If

                If dbt = Nothing Then
                    Throw New ArgumentNullException("dbt")
                End If

                If Not strKey.StartsWith("@") Then
                    strKey = "@" + strKey
                End If

                m_dictParameters.Add(strKey, New cParameter(dbt, objValue))
            End Sub ' Add

        End Class ' cParameterStore


        Public Shared Function GetNewParamterStore() As cParameterStore
            Return New cParameterStore()
        End Function ' GetNewParamterStore



        Public Shared Sub ExecuteSQLreader(ByRef strSQL As String, ByRef strWhich As String, ByRef alSQLqueryReturnList As ArrayList)
            'Dim alSQLqueryReturnList As ArrayList
            'alSQLqueryReturnList = New ArrayList

            Using dbConn As System.Data.IDbConnection = GetConnection()

                SyncLock dbConn

                    Using sqlCMD As System.Data.IDbCommand = dbConn.CreateCommand()

                        Try
                            sqlCMD.CommandText = strSQL

                            If Not dbConn.State = System.Data.ConnectionState.Open Then
                                dbConn.Open()
                            End If

                            Using sdrSQLReader As System.Data.IDataReader = sqlCMD.ExecuteReader(System.Data.CommandBehavior.CloseConnection)
                                While sdrSQLReader.Read()
                                    alSQLqueryReturnList.Add(sdrSQLReader.Item(strWhich).ToString())
                                End While
                            End Using

                        Catch QueryError As Exception
                            'Log.File.WriteText(String.Format("Exception in ExecuteSQLreader: {0}{1}{2}", QueryError.Message, vbCrLf, strSQL))
                            Log.File.WriteText(String.Format("Fehler in ExecuteSQLreader: {0}{1}{2}", QueryError.Message, vbCrLf, strSQL))
                        Finally
                            If Not dbConn.State = System.Data.ConnectionState.Closed Then
                                dbConn.Close()
                            End If
                        End Try

                    End Using ' sqlCMD

                End SyncLock ' dbConn

            End Using ' dbConn

        End Sub ' ExecuteSQLreader


        Public Shared Function ExecuteSQLstmtScalarWithParameter(ByRef strSQL As String, ByVal ParameterStore As cParameterStore) As String
            Dim strReturnValue As String = ""

            Using sqldbConnection As System.Data.IDbConnection = GetConnection()

                SyncLock sqldbConnection

                    Using sqlCMD As System.Data.SqlClient.SqlCommand = sqldbConnection.CreateCommand()
                        sqlCMD.CommandText = strSQL

                        Try
                            'sqlCMD.Parameters.Add("@mandant", System.Data.SqlDbType.Int).Value = 5
                            For Each kvpThisParameter As KeyValuePair(Of String, cParameterStore.cParameter) In ParameterStore.Parameters
                                sqlCMD.Parameters.Add(kvpThisParameter.Key, kvpThisParameter.Value.SqlDbType).Value = kvpThisParameter.Value.Value
                            Next


                            ' Open the connection
                            If Not sqldbConnection.State = ConnectionState.Open Then
                                sqldbConnection.Open()
                            End If

                            Dim objResult As Object = sqlCMD.ExecuteScalar()

                            If objResult IsNot Nothing Then
                                strReturnValue = objResult.ToString()
                            Else
                                strReturnValue = Nothing
                            End If

                            objResult = Nothing
                        Catch ex As System.Data.SqlClient.SqlException
                            'Log.File.WriteText(String.Format("Exception executing ExecuteSQLstmtScalarWithParameter: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLstmtScalarWithParameter: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            ' No Error notification when silent
                        Finally

                            ' Open the connection
                            If Not sqldbConnection.State = ConnectionState.Closed Then
                                sqldbConnection.Close()
                            End If

                            sqlCMD.Dispose()
                            sqldbConnection.Dispose()
                        End Try

                    End Using ' sqlCMD

                End SyncLock ' sqldbConnection

            End Using ' sqldbConnection

            Return strReturnValue
        End Function ' ExecuteSQLstmtScalarWithParameter


        Public Shared Function ExecuteSQLstmtScalar(ByRef strSQL As String) As String
            Dim strReturnValue As String = ""

            Using sqldbConnection As System.Data.IDbConnection = GetConnection()

                SyncLock sqldbConnection

                    Using sqlCMD As SqlClient.SqlCommand = sqldbConnection.CreateCommand()
                        sqlCMD.CommandText = strSQL

                        Try
                            ' Open the connection
                            If Not sqldbConnection.State = ConnectionState.Open Then
                                sqldbConnection.Open()
                            End If

                            Dim objResult As Object = sqlCMD.ExecuteScalar()

                            If objResult IsNot Nothing Then
                                strReturnValue = objResult.ToString()
                            Else
                                strReturnValue = Nothing
                            End If

                            objResult = Nothing
                        Catch ex As System.Data.SqlClient.SqlException
                            'Log.File.WriteText(String.Format("Exception executing ExecuteSQLstmtScalar: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLstmtScalar: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            ' No Error notification when silent
                        Finally

                            ' Open the connection
                            If Not sqldbConnection.State = ConnectionState.Closed Then
                                sqldbConnection.Close()
                            End If

                            sqlCMD.Dispose()
                            sqldbConnection.Dispose()
                        End Try

                    End Using ' sqlCMD

                End SyncLock ' sqldbConnection

            End Using ' sqldbConnection

            Return strReturnValue
        End Function ' ExecuteSQLstmtScalar



        Public Shared Sub ExecuteSQLStmtWithParameters(ByRef strSQL As String, ByVal ParameterStore As cParameterStore)

            Using conn As System.Data.IDbConnection = GetConnection()

                SyncLock conn
                    Using sqlCMD As System.Data.SqlClient.SqlCommand = conn.CreateCommand
                        sqlCMD.CommandText = strSQL
                        'sqlCMD.Parameters.Add("@mandant", System.Data.SqlDbType.Int).Value = 5
                        For Each kvpThisParameter As KeyValuePair(Of String, cParameterStore.cParameter) In ParameterStore.Parameters
                            sqlCMD.Parameters.Add(kvpThisParameter.Key, kvpThisParameter.Value.SqlDbType).Value = kvpThisParameter.Value.Value
                        Next

                        'Dim x As System.Data.IDataParameter = cmd.CreateParameter()
                        'x.ParameterName = ""
                        'x.Value = ""
                        'sqlCMD.Parameters.Add(x)


                        Try
                            ' Open the connection
                            If Not conn.State = ConnectionState.Open Then
                                conn.Open()
                            End If

                            sqlCMD.ExecuteNonQuery()

                            'Log.File.WriteText(String.Format("Command ExecuteSQLStmtWithParameters completed successfully. {0}", vbCrLf + "strSQL=" + strSQL))
                        Catch ex As SqlClient.SqlException
                            'Log.File.WriteText(String.Format("Exception executing ExecuteSQLStmtWithParameters: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLStmtWithParameters: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                        Finally
                            If Not conn.State = ConnectionState.Closed Then
                                conn.Close()
                            End If
                        End Try

                    End Using ' sqlCMD

                End SyncLock ' conn

            End Using ' conn

        End Sub ' ExecuteSQLStmtWithParameters


        Public Shared Sub ExecuteSQLStmtNoNotification(ByRef strSQL As String, Optional ByRef strConnectionString As String = Nothing)
            Using conn As System.Data.IDbConnection = GetConnection()

                SyncLock conn

                    Using cmd As System.Data.IDbCommand = conn.CreateCommand()
                        cmd.CommandText = strSQL

                        Try
                            ' Open the connection
                            If Not conn.State = ConnectionState.Open Then
                                conn.Open()
                            End If

                            cmd.ExecuteNonQuery()
                            'Log.File.WriteText(String.Format("Command ExecuteSQLStmtNoNotification completed successfully. {0}", vbCrLf + "strSQL=" + strSQL))
                        Catch ex As SqlClient.SqlException
                            'Log.File.WriteText(String.Format("Exception executing ExecuteSQLStmtNoNotification: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLStmtNoNotification: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                        Finally
                            If Not conn.State = ConnectionState.Closed Then
                                conn.Close()
                            End If
                        End Try

                    End Using ' cmd

                End SyncLock ' conn

            End Using ' conn

        End Sub 'ExecuteSQLStmtNoNotification



        Public Shared Function ExecuteSQLStmtNoNotificationReturnError(ByRef strSQL As String, Optional ByRef strConnectionString As String = Nothing) As System.Data.SqlClient.SqlException
            Dim eErrorCatcher As System.Data.SqlClient.SqlException = Nothing

            Using conn As System.Data.IDbConnection = GetConnection()

                SyncLock conn

                    Using sqlCMD As System.Data.IDbCommand = conn.CreateCommand()

                        Try
                            sqlCMD.CommandText = strSQL

                            ' Open the connection
                            If Not conn.State = System.Data.ConnectionState.Open Then
                                conn.Open()
                            End If

                            sqlCMD.ExecuteNonQuery()
                        Catch ex As System.Data.SqlClient.SqlException
                            eErrorCatcher = ex
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLStmtNoNotificationReturnError: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                        Catch ex As Exception
                            Log.File.WriteText(String.Format("Unerwarteter Fehler beim Ausführen von ExecuteSQLStmtNoNotificationReturnError: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                        Finally
                            If Not conn.State = System.Data.ConnectionState.Closed Then
                                conn.Close()
                            End If
                        End Try

                    End Using ' sqlCMD

                End SyncLock ' conn

            End Using ' conn

            Return eErrorCatcher
        End Function 'ExecuteSQLStmtNoNotificationReturnError


        Public Shared Sub ExecuteSQLStmtSilent(ByRef strSQL As String)
            Using conn As System.Data.IDbConnection = GetConnection()

                SyncLock conn

                    Using cmd As System.Data.IDbCommand = conn.CreateCommand()
                        cmd.CommandText = strSQL
                        Try
                            ' Open the connection
                            If Not conn.State = ConnectionState.Open Then
                                conn.Open()
                            End If

                            cmd.ExecuteNonQuery()
                        Catch ex As System.Data.SqlClient.SqlException
                            ' No Error notification in silent mode
                            'Log.File.WriteText(String.Format("Exception executing ExecuteSQLStmtSilent: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler beim Ausführen von ExecuteSQLStmtSilent: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                        Finally
                            ' Open the connection
                            If Not conn.State = ConnectionState.Closed Then
                                conn.Close()
                            End If
                        End Try

                    End Using ' cmd

                End SyncLock ' conn

            End Using ' conn

        End Sub 'ExecuteSQLStmtSilent


        Public Shared Sub GetDataSetWithParameters(ByRef strSQL As String, ByRef dsDataFromTable As DataSet, ByRef ParameterStore As cParameterStore)
            GetDataSetWithParameters(strSQL, dsDataFromTable, "ThisTable", ParameterStore)
        End Sub ' GetDataSetWithParameters


        Public Shared Sub GetDataSetWithParameters(ByRef strSQL As String, ByRef dsDataFromTable As DataSet, ByVal strTableName As String, ByRef ParameterStore As cParameterStore)
            Using sqlConnection As System.Data.SqlClient.SqlConnection = GetConnection()

                SyncLock sqlConnection

                    Using sqlCMD As System.Data.SqlClient.SqlCommand = sqlConnection.CreateCommand()
                        sqlCMD.CommandText = strSQL
                        'sqlCMD.Parameters.Add("@mandant", System.Data.SqlDbType.Int).Value = 5
                        Try
                            For Each kvpThisParameter As KeyValuePair(Of String, cParameterStore.cParameter) In ParameterStore.Parameters
                                sqlCMD.Parameters.Add(kvpThisParameter.Key, kvpThisParameter.Value.SqlDbType).Value = kvpThisParameter.Value.Value
                            Next
                        Catch ex As Exception
                            Log.File.WriteText(String.Format("Fehler in GetDataSetWithParameters (at adding parameters): {0}", ex.Message + Environment.NewLine + "strSQL=" + strSQL))
                        End Try

                        Using daQueryTable As System.Data.SqlClient.SqlDataAdapter = New System.Data.SqlClient.SqlDataAdapter(sqlCMD)
                            Try



                                dsDataFromTable = New System.Data.DataSet(strTableName)

                                If Not sqlConnection.State = System.Data.ConnectionState.Open Then
                                    sqlConnection.Open()
                                End If

                                daQueryTable.Fill(dsDataFromTable)
                            Catch ex As Exception
                                'Log.File.WriteText(String.Format("Exception executing GetDataSetWithParameters: {0}", ex.Message + vbCrLf + "strSQL=" + strSQL))
                                Log.File.WriteText(String.Format("Fehler in GetDataSetWithParameters: {0}", ex.Message + Environment.NewLine + "strSQL=" + strSQL))
                            Finally
                                If Not sqlConnection.State = System.Data.ConnectionState.Closed Then
                                    sqlConnection.Close()
                                End If
                            End Try

                        End Using ' daQueryTable

                    End Using ' sqlCMD

                End SyncLock ' sqlConnection

            End Using ' sqlConnection

        End Sub ' GetDataSetWithParameters


        Public Shared Sub GetDataSet(ByRef strSQL As String, ByRef dsDataFromTable As DataSet)
            GetDataSet(strSQL, dsDataFromTable, "ThisTable")
        End Sub ' GetDataSetWithParameters


        Public Shared Sub GetDataSet(ByRef strSQL As String, ByRef dsDataFromTable As DataSet, ByVal strTableName As String)
            Using sqlConnection As System.Data.SqlClient.SqlConnection = GetConnection()

                SyncLock sqlConnection

                    Using daQueryTable As System.Data.SqlClient.SqlDataAdapter = New System.Data.SqlClient.SqlDataAdapter(strSQL, sqlConnection)
                        Try
                            dsDataFromTable = New System.Data.DataSet(strTableName)

                            If Not sqlConnection.State = System.Data.ConnectionState.Open Then
                                sqlConnection.Open()
                            End If

                            daQueryTable.Fill(dsDataFromTable)
                        Catch ex As Exception
                            'Log.File.WriteText(String.Format("Exception executing GetDataSetWithParameters: {0}", ex.Message.ToString() + vbCrLf + "strSQL=" + strSQL))
                            Log.File.WriteText(String.Format("Fehler in GetDataSetWithParameters: {0}", ex.Message + Environment.NewLine + "strSQL=" + strSQL))
                        Finally
                            If Not sqlConnection.State = System.Data.ConnectionState.Closed Then
                                sqlConnection.Close()
                            End If
                        End Try

                    End Using ' daQueryTable

                End SyncLock ' sqlConnection

            End Using ' sqlConnection

        End Sub ' GetDataSet



    End Class


End Namespace

很快从另一个论坛上抄袭;这应该让你开始:

发件人:

如果您不寻求分页和更新内置支持,只需使用中继器,代码应该如下所示

<asp:Repeater id="myRepeater" runat="server">
<ItemTemplate>
<a href='<%# Eval("client_url") %>'><%# Eval("client_name") %> </a>
</ItemTemplate>
</asp:Repeater>

正如我所说,MSDN/谷歌搜索肯定会有所帮助@用户913233,简而言之是“否”。但是,您可以使用答案左侧的向上箭头按钮向上投票任意数量的答案。接受最相关/最有帮助的答案。有关更多信息,请参见SO常见问题解答:为了公平起见,我花了更长的时间来复制和格式化此内容,而不是实际找到一个合适的示例。谷歌是你的朋友。。。
protected void Page_Load(object sender, EventArgs e)
{
    if (IsPostBack == false)
    {
        string strConnection = ConfigurationManager.ConnectionStrings["connectionString"].ConnectionString; // Add your connection string here if you have it in your web.config file, if not, just type it out manually.
        string mySelectQuery = "SELECT client_url, client_name FROM Clients";
        SqlConnection myConnection = new SqlConnection(strConnection);
        SqlCommand myCommand = new SqlCommand(mySelectQuery, myConnection);
        myConnection.Open();
        SqlDataReader myReader;
        myReader = myCommand.ExecuteReader();
        myRepeater.DataSource = myReader;
        myRepeater.DataBind();
        myReader.Close();
        myConnection.Close();
    }
}