An intuitive utility to help find the CSS path to UI elements on a webpage. These paths are used frequently in a variety of front-end development and QA automation tasks.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
put this into "page.asp":
<%
On Error Resume Next
' See if present.asp has any content:
Set fs = CreateObject("Scripting.Fi
Set ts = fs.OpenTextFile(Server.Map
txt = ""
txt = ts.ReadLine
ts.Close
' Create Link:
If txt = "" Then
Response.Write "<a href='ouch.asp'>myLink</a>
Else
Response.Write "<a href='present.asp'>myLink<
End If
%>
Regards