Regular expressions to convert asp to aspx?

JoeDirt

New member
I need to start some asp conversion. The first step I'd like to do is add parenthesis to our response.write statements. I'd like to use a regular expression, but I've struggled so far. Here are some of the possible strings....
<input class="<%=classChoice%>" type="checkbox" <%=disabled%> name="<%response.write FieldValue%>" id="<%response.write FieldValue%>" TABINDEX=<%=TabOrder%> value="<%=checkBoxValue%>" <%if action3 = "INSERT" then%><%=session(FieldValue)%><%end if%><%if DetailValues(FieldValue) = checkBoxValue then%>checked<%end If%> ONCLICK="checkIt(this)">

Response.write someVar
response.write "Hello World"
response.write (someVar)
response.write("hello World")
<%response.write someVar%>
 
Back
Top