vote up 0 vote down star

Hey guys,

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

flag

1 Answer

vote up 5 vote down check

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|flag
Thats awesome, thankyou Mehrdad! – Ashh Jul 20 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? – Ashh Jul 20 at 13:48
Of course you don't. That's a placeholder for your class name. – Mehrdad Afshari Jul 20 at 13:50
Ohhhhhh!!! Sorrry im still learning all this at uni! Thankyou i get what you mean now! Sorry and Thanks again!!! – Ashh Jul 20 at 13:56

Your Answer

Get an OpenID
or

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