Hi,
This code gives two errors, one on each </scripttag:
the first: "statement cannot appear in method body"
the last: "end of tag has no matching start tag"
Any way to solve this?
Thanks
Bob
<script runat="server">
Protected Sub DetailsView1_It emInserted(ByVa l sender As Object, ByVal e As
System.Web.UI.W ebControls.Deta ilsViewInserted EventArgs)
Dim jv As String
jv = "<script type='text/javascript' language='javas cript'>" _
& " alert('Thanks, data are in');" _
& "</script>"
Response.Write( jv)
End Sub
</script>
This code gives two errors, one on each </scripttag:
the first: "statement cannot appear in method body"
the last: "end of tag has no matching start tag"
Any way to solve this?
Thanks
Bob
<script runat="server">
Protected Sub DetailsView1_It emInserted(ByVa l sender As Object, ByVal e As
System.Web.UI.W ebControls.Deta ilsViewInserted EventArgs)
Dim jv As String
jv = "<script type='text/javascript' language='javas cript'>" _
& " alert('Thanks, data are in');" _
& "</script>"
Response.Write( jv)
End Sub
</script>
Comment