J
jw56578
Why does this work in C# but not VB.net
C#
<img src="<% Response.Write("imageroot");%>images/delivery_number.jpg">
VB.Net
<img src="<% Response.Write("imageroot")%>images/delivery_number.jpg">
in c# the value "imageroot" will be created, in VB.net nothing will be
outputted
C#
<img src="<% Response.Write("imageroot");%>images/delivery_number.jpg">
VB.Net
<img src="<% Response.Write("imageroot")%>images/delivery_number.jpg">
in c# the value "imageroot" will be created, in VB.net nothing will be
outputted