When the code is not separated
ASP.NET
5
Posts
3
Posters
0
Views
1
Watching
-
When the code is not separated to index.aspx and index.aspx.vb but all the code aspx and vb in the same page index.aspx where I can but the code such as :
Imports system.IO
<%@ Import Namespace="myNamespace"> Try this..
-
<%@ Import Namespace="myNamespace"> Try this..
-
Thanks . But this error is occurred: Parser Error Message: The server block is not well formed.
k try this <%@ Import Namespace="system.IO" %>
-
Thanks . But this error is occurred: Parser Error Message: The server block is not well formed.
You have missed server side tage closing character "%>" ( you have provided ">" only )
Thanks, Arindam D Tewary