Now I want the results to be a hyperlink.
Change:
Response.Write(rsVids.Fields.Item("SampleVid").Value)
To what?
I tried this:
Response.Write(<a href="(rsVids.Fields.Item ("SampleVid").Value) "target="_blank" rel="nofollow">test</a>)
And this:
Response.Write(<a href=" & rsVids.Fields.Item ("SampleVid").Value & "target="_blank" rel="nofollow">test</a>)
and other variations but nothin.