GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET 2.0

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



September 09, 2008 12:32:01 #9
 vivek_upadhyay_2812   Member Since: September 2008    Total Comments: 4 

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
     

 

Back To Question