Okay. My main idea is to be able to add some asp.net functions into my
sharepoint pages. If I can do it with js or css, why not with asp.net? Asp.net
runs server-side, so I need not worry about whether js is turned on or off.
Plus, since it is server-side, I don't have to worry about browser discrepencies
in the interpretation of code. I want to create a sort of asp.net library
(preferably VB.net) and use the functions in Sharepoint.
Right now I am doing it with javascript in this fashion: In the header of the
master page I include the js file. Then, just before the body close-tag in the
master page, I put a function call, the function of which is set when the js
file is loaded (it looks to see what the location is and then decides what
function to run). I figure I can do the same thing using server-side code, that
is, if I can figure out how to include an asp.net library into my sharepoint
pages...