vb.net代码中是否有runat ="server"
的替代方法。我不应该使用runat="server"
Protected name As String = " "
<script language ="VB" runat="server">
Actual code here
name&= (DTName.Rows(DRCount)("Client Name").Tostring() & "<br/>")
</script>
<html>
<%=name%>
</html>
如果我不使用runat="server"
,则不会显示html中的代码。