RE: What type of code (server or client) is found in a Code-Behind class?
Server side code is found in the code behind file (you can output a string of code that will get printed on client browser like java script etc which will get executed on client browser but only line of code that can get executed ofn server is included in code behind file)
RE: What type of code (server or client) is found in a Code-Behind class?
The code which we write in code behind is all server side code we will use languages like vb or c# for this code. All this code will be converted in to DLL in .net
RE: What type of code (server or client) is found in a Code-Behind class?
Both type of code can be written in code behind page. usually we write sever side code. we can call client side function through the server side code in code behind by using
Page.ClientScript.RegisterClientScriptBlock(Type As system.Type Key as string script as string) in vb
RE: What type of code (server or client) is found in a Code-Behind class?
There is the ability to use both server side and client side code with in the code behind. Generally though the code behind is server side code. This code acts on Events that are fired that are not handled by the client side script.(JavaScript vbscript etc..) .