In which interface the template of any control like Gridview would Initiate?
Latest Answer: iTemplate interface ...
How we can set Different levels of Authentication in .Net?What are the difference between Windows Authenticatin, Passport Authentication and Form Authentication?
Latest Answer: You can change/add authendication in web config file, in that you have to mention the authendication mode,Windows Authendication: By default authendication mode is windows authendication.Form authendication: authendication provide by web site of of ...
What is tooltip class? How it was implemented?
Latest Answer: It is class present in .net which help you to provide a tool tip property to any components if bydefaul they dont have it. Once you drag this add the Tool Tip control to your form they almost all control can get benefit of this property as in all controls ...
explain virtual function in c# with an example
Latest Answer: Virtulal function can not be instatntiated. Declaring a function as virtual tells the compiler that this function is being overrided by the child one's ...
When using code behind pages, which library must access file import from asp.net environment
Latest Answer: Code through this link u may get required informationhttp://www.4guysfromrolla.com/webtech/chapters/ASPNETUnleashed/ch06.3.shtml ...
What type of processing model does ASP.NET stimulate?
Latest Answer: Event-driven ...
What do you mean by Declarative Security and Imperative Security? Explain with an example of usage where you would use them
Latest Answer: You can see the detail in MSDN library: http://msdn.microsoft.com/en-us/library/0xkh23z7.aspx and http://msdn.microsoft.com/en-us/library/kaacwy28.aspxFrom what I understand, Declarative Security can be used on Request, Demand and Overrides, Imperative ...
How to alter the rows in a datagrid?
Latest Answer: You can use DataGrid's OnItemCreated and OnItemDataBound events. OnItemCreated event is fired once a row is created but the values are not yet binded.OnItemDataBound will fire for every row that is bounded. You can get the values here for each column ...
How do you post a current page to different ASPx page?
Latest Answer: protected void Page_Load { Response.Redirect("webform.aspx"); ...
What is Conditional Bloating? How do you handle it?

Go Top
No comments:
Post a Comment