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 : 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 usingPage.ClientScript.RegisterClientScriptBlock(Type As system.Type,Key as string,script ...
Latest Answer : It's upon you what you prefer, that can be done on both sides best practice says it should be done on both side just to be on the safer side, becuse there is some possibility that client side validation can be hacked(disabled) by some vulnerable scripts,so ...
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 ...