Code:
Dim command As String
command = "Select @ZipcodeID As ZipcodeID"
Page.Response.Write(" " + command + " ")
Dim cmd As SqlCommand
cmd = New SqlCommand(command)
Page.Response.Write(" " + command + " ")
cmd.Parameters.AddWithValue("@ZipcodeID", TextBoxZipcode.Text)
Page.Response.Write(" " + TextBoxZipcode.Text + " ")
page.response.write ( Here syntax of the result of the query )
How do I do the last line? Perhaps, a table, but how? Thanks.