This code makes my browser sit and spin. After I load this code about 5 or six times I have to reload IIS cause it says to many users are connected. Help Please.
This code is suppose to open a file containing my table with object requests and display it on the page. This is to replace an #include that I want to make dynamic. I'm not sure where to go next.
Filename = Server.Mappath("table_template.asp")
Set fs = CreateObject("Scripting.FileSystemObject")
Set thisfile = fs.OpenTextFile(Filename, 1, False)
tempSTR = thisfile.readall
Response.Write tempSTR
thisfile.Close
Set thisfile = nothing
Set fs = nothing
This code is suppose to open a file containing my table with object requests and display it on the page. This is to replace an #include that I want to make dynamic. I'm not sure where to go next.
Filename = Server.Mappath("table_template.asp")
Set fs = CreateObject("Scripting.FileSystemObject")
Set thisfile = fs.OpenTextFile(Filename, 1, False)
tempSTR = thisfile.readall
Response.Write tempSTR
thisfile.Close
Set thisfile = nothing
Set fs = nothing