I have html content in div tag. I want to print this content by vb.n开发者_如何学Pythonet code. Anyone can help me ? how to erite a code in vb.net web application for print the content?
Here is the solution:
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Response.Write("Your div content goes here")
End Sub
精彩评论