Help with clip library
Posted: Tue Oct 10, 2000 1:06 pm
I'm trying to make a massive clip library full of useful functions (to me at least) in ASP. For example, I've made a function that would setup an ado recordset that looks something like this:
Dim rsTable
Set rsTable = Server.Createobject("ADODB.Recordset")
rsTable.Open
rsTable.Close
Set rsTable = Nothing
My question is: Is there a way have textpad automatically replace the string rsTable from my code with whatever was highlighted before the code was inserted? I want to do this because I don't want to always use rsTable as the variable name.
Dim rsTable
Set rsTable = Server.Createobject("ADODB.Recordset")
rsTable.Open
rsTable.Close
Set rsTable = Nothing
My question is: Is there a way have textpad automatically replace the string rsTable from my code with whatever was highlighted before the code was inserted? I want to do this because I don't want to always use rsTable as the variable name.