Dim Conn As Object ' SqlConnection
Dim Comm As Object ' SqlCommand
Dim dataRdr As SqlDataReader
Dim Sqwl As String
InitializeDBObjects(Conn, Comm)'This is a
Function to set the Connection and the
'Command Object
Comm.Connection = Conn
Try
Conn.Open()
Catch
Exit Function
End Try
Sqwl = "select * from library_Author "
Comm.CommandText = Sqwl
DrpDwnCategory.DataSource =
Comm.ExecuteReader()
DrpDwnCategory.DataBind()
Conn.close()
Comm.dispose()
The Problem is that I have got the Author
FName(FirstName) and the LName(LastName) in the
DataTextField I want to concatinate Both the Fields
and present it,How Do I do this
I cant do it in the HTML Part as it throws Error and
if I do it in the Code behind How do
I do it.