Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Basic ASP programming Error

Status
Not open for further replies.

czbear

IS-IT--Management
Jul 3, 2003
11
US
I'm trying to migrate to .NET it would seem that the books I have have left out some of the fundamental structures.

I have the traditional .NET event driven <scipt> blocks and the page load event. What I have done is write some global security proceedures in an .NET include file using <% ... %>, (Legacy ASP security).

<%
if do while anything is fine, but...

Function CheckApp(intAppid as Integer, blnDeny as Boolean) As Boolean

kicks out:
Statement cannot appear within a method body

What do I have to do in order to write functions and subs between <% %> in ASP.NET (VB)?

Thanks,
Brian
 
Try this:
Code:
<script runat="server">
Sub Page_Load(sender as object, e as eventargs)
 //your page_load code
 //call your function ... i.e. CheckApp(10,True)
End Sub

Function CheckApp(byval intAppid as Integer, byval blnDeny as Boolean) As Boolean
 //your function code
End Function
</script>

[morning]
 
aint gone work, Its a nice solution but I have an include File which is outside of the page code. It's global code and operates independent of the page code. Technically I could use what you have but the question is still there...

What do I need to do to write functions and subs between <% .. %> tags?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top