What type of code (server or client) is found in a Code-Behind class?

Showing Answers 1 - 6 of 6 Answers

vijaybabu

  • Mar 15th, 2005
 

Server Side Code

  Was this answer useful?  Yes

satinder

  • Mar 15th, 2005
 

Server Side code. Bacause it contains all the functions that are event driven

  Was this answer useful?  Yes

Sachin Ambekar

  • Mar 25th, 2005
 

As .NET is featured with Event Driven Programming code behind pages are used to separate the even-procedures from content of page. So it containts Server Side code.

  Was this answer useful?  Yes

Jitendra Kumar Thakur

  • Aug 13th, 2005
 

Surely, Serverside Code, since Code Behind is responsible for executing any Event which is fired by Front End Controls and Web Application is not totally stored on the client machine but it process the request of client and transfer data accordingly.

samiksc

  • Jan 12th, 2006
 

Yes, mainly it contains the server side code, event handling methods and other methods.

But it could also contain some client side code, written in a string variable and passed to the 'RegisterClientScriptBlock()' method. You may register some client side code, say, in the page_load method using RegisterClientScriptBlock

shankar

  • Jun 15th, 2006
 

C#

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions