Thread: PHP or ASP.Net?
View Single Post
  #8   Spotlight this post!  
Unread 07-06-2003, 20:52
Greg's Avatar
Greg Greg is offline
Registered User
FRC #1075 (Sinclair Sprockets)
Team Role: College Student
 
Join Date: Nov 2002
Rookie Year: 2003
Location: Whitby, Ontario, Canada
Posts: 108
Greg is on a distinguished road
Send a message via ICQ to Greg Send a message via MSN to Greg
Well, I tried both PHP and ASP before, and I kinda like PHP better myself One more question: how to use classes in ASP.Net code on Brinkster? If I just put them with the rest of the code like this
Code:
<script runat=server>
Sub Page_Load()...
End Sub
...
Class MyClass
...
End Class
</script>
It puts the class inside the page main class, and usually this screws things up. And codebehind does not work on Brinkster. I tried using the <%@ Assembly %> directive too...