Latest Answer : Server-side code run at the server. It is a seprated file from html page.Client-side code is processd by browser and run at the client side ...
Latest Answer : 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, ...
Latest Answer : Validation can be done both client side and server side.The advantage of using client side validation is better performance than server side validation as there is no round trip in client side validation.The disadvantage of client side validation is all ...
What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?
Latest Answer : try { SqlParameter p0, p1, p2; cmd = new SqlCommand(); cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "spo_sample"; //Param: Return Value p0 = cmd.Parameters.Add("@RowCount", SqlDbType.Int); p0.Direction ...
Latest Answer : 1. Basically for a SAO, the lifetime of the object is controlled by server, whereas for a CAO, the lifetime is controlled by the client.Below are definitions from MSDN. Server activated objects includes Single Call & Singleton.Single Call objects service ...
Latest Answer : CurrentPageIndex Property ...
System.Web.UI.Ipostback event handler interface to raise event responses on the server to postback calls from the client. This can be a bit tricky, and I would recommend thoroughly examining what you might
Latest Answer : Only Anishcp is correct. Before answering any question, please do read the question carefully as the question is about "IPostback" not "IsPostback". Find more at System.Web.UI.Ipostback event handler interface. ...
Latest Answer : component product of Windows Server System is effective on its own, as individual components and as part of an integrated system. To provide a framework for Windows Server System product improvement, Starting with the infrastructure server ...
Latest Answer : By default server side validation occures when using the validation controls.Additionally client side validation can be done through javascript.This increases the execution speed since it doesn't occur in the server.But when checking between of two ...