References in classic ASP -


i got tossed maintenance work on classic asp (note: not asp.net) page. page has line looks @ top:

<object runat="server" progid="findasp.search" id="objfind"></object>  

the body of asp page has looks this:

<form action="search.asp" method="post" id="frmsearch" name="frmsearch">       <% objfind.display "", "" %>  </form> 

what world doing? looks calling display function. function spits out html. guess, display function defined through objfind object. however, can't find how objfind defined or defined.

can please give me advice? have no clue go @ point.

the code using server side object - com object name (progid) findasp.search assigned variable (id in tag) objfind.

this com object seems define display function, without knowing more findasp.search there isn't more can tell.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -