Is there support for inline ASPX / VB syntax color coding?
Coding should highlight HTML / VB.NET coding in ASPX file (HTML / C#)
Here is code snippet:
Coding should highlight HTML / VB.NET coding in ASPX file (HTML / C#)
Here is code snippet:
Code: Select all
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server" >
dim s as String=""
dim s2 as String=""
sub fillTest()
s = "testtest"
s = replace(s,"e","x")
end sub
</script>
<%
s2 = "test2test2"
s2 = replace(s2,"e","x")
'fill variable s with text
fillTest
%>
<table border="1">
<tr>
<td><%=s%></td>
<td><%=s2%></td>
</tr>
</table>