i am making a website using asp.net and C# and well i got stuck at the first hurdle, i found out that to use code you use the <% %> with asp but i dont get how i would create an object of my class to use in the aspx file?

I think its syntax more than anything i cant seem to get to work.

Thanks,

Ash

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

If you need to declare a global object to be accessible everywhere in your page:

<script runat="server">
   // ObjectType: Your class name
   // Name: Your instance (variable) name.
   ObjectType Name = new ObjectType();
</script>

If you just need a local variable:

<%
   ObjectType name = new ObjectType();
   name.SomeMethod();
%>

By the way, you should have good reasons for using these kind of things in ASP.NET. There are usually better ways to encapsulate user interface elements in user controls and master pages.

Side note: You can't use using directives in .aspx files. If you need to import some namespace in your code, you should add <%@ Imports Namespace="SomeNamespace" %> directives right after your <%@ Page %> directive.

link|improve this answer
Thats awesome, thankyou Mehrdad! – Ash Jul 20 '09 at 13:44
Where you have ObjectType, that doesnt seem to be recognised,. I am using a global declaration. Is this because i missed a using statement for something? – Ash Jul 20 '09 at 13:48
Of course you don't. That's a placeholder for your class name. – Mehrdad Afshari Jul 20 '09 at 13:50
Ohhhhhh!!! Sorrry im still learning all this at uni! Thankyou i get what you mean now! Sorry and Thanks again!!! – Ash Jul 20 '09 at 13:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.