For application performance you need to some r & d on your query mean stored procedure
see their retrieval cost and find where it is taking too much time to retriev the data
and do some action on that table.
For eg.
1.You should be use index whereever required
2.Use joining if required otherwise remove unnesseary join.
3.Select...
Wednesday, March 7, 2012
Tuesday, March 6, 2012
How to get label or textbox control from .aspx page in .ascx user control page
How to access controls from .aspx in .ascx user control page
Here i am showing a simple example how can we access controls from aspx in .ascx page
First i have created a WebUserControl.ascx user control page which contain a button.
WebUserControl.ascx page
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl.ascx.cs"...