Hi , I am Basha. I am searching a job in dotnet.Plz tell me
the order of page events in asp.net 2.0> plz send faq's
related to c#.net,asp.net,sqlserver2000 etc. to my mail-id :
bashask.ss@gmail.com
Answer Posted / csc
Page_PreInit()
Page_Init()
Page_InitComplete()
Page_PreLoad()
Page_Load()
Page_LoadComplete()
Page_PreRender()
Page_PreRenderComplete()
Page_SaveStateComplete()
Page_Unload()
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Which data type does the rangevalidator control support?
What is the purpose of using MVC programming pattern in ASP.NET?
What is the size of Get method and how much data it can store?
What is latest version of asp.net mvc? : Asp.Net MVC
Define secured sockets layer.
What is clickid?
What do you mean by role-based security?
What are the page life cycle events?
in which protocol ASP.NET WEB API Work?
What are Master Pages in ASP.NET?
What is repository pattern in mvc.net? : asp.net mvc
Define data caching?
Is asp.net mvc still used? : Asp.Net MVC
What are cookies in asp.net?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal