How do I know what to @import?

  • Thread starter Thread starter COHENMARVIN
  • Start date Start date
C

COHENMARVIN

Suppose I'm writing an ASP.net page with collections, sql server
database connections, etc. How do I know what '@import' directives I
am supposed to use?
Also, is there compilation I am supposed to do with code-behind
classes? If so, how do I know what libraries to link them to when I
compile them with vbc.exe?
Thanks,
CohenMarvin
 
Hello there,

First thing is - there aren't that many that you have to remember for most
simple pages. I write moderately complex applications and I normally only
use 5 at most.
Essentially, you learn by taking not of what's imported when you are reading
examples. Also, msdn had extensive documentation on the runtime so if you
ever find a class and you don't know where it belongs, then google it and
msdn will likely come up.

Honestly though, there aren't that many and they are very sensibly laid out
(for the most part!)

tce
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top