Going to source of a method in ASP classic -
in vs 2013 have opened asp classic project , example here source code it:
case "wsf_last" call lastname() i have clicked f12 on method name , goes source code of method have never seen or worked on asp classic project , nothing when f12 it. if search-all on lastname() other thing find this:
<%sub lastname()%> <tr> <td width="1%" align="right" class="inputboxeslabel" nowrap> last/inst name </td> <td width="99%"><input type="text" name="physicianname" size="20" maxlength="35" value="<%=pn%>"></td> </tr> <%end sub so code coming from?
you've found it... right there subroutine definition. it's not recommended practice quite this, is. more appropriate define function , either response.write or return html see above. jumping in , out of asp in middle of sub difficult read.
Comments
Post a Comment