I’m new to ASP, VBScript and am trying to figure out how to change some text on a webpage.
What I want to do:
Change some text in a web page
The problem:
The web page (.asp) text seems to be generated by code that looks like this: <% Set MyAd = Server.CreateObject(“ETFramework11.WPLoginPage”) %> and I cannot directly see the text that I want to change.
Question:
Where does the file(s) housing the ETFramework11 or WPLoginPage reside physically? (assuming that they reside in separate files somewhere) What are the file types? What do they look like?
CreateObjectis used to instantiate a COM object. SoETFramework11.WPLoginPageis an object in a DLL somewhere. You will need to find out where that object pulls the files from if at all – if not, then it is embedded in the DLL and I would contact the vendor.You can find out where the DLL is located by searching for the object name (i.e.
ETFramework11.WPLoginPagein the registry).