Hi guys, Howz all doing!! My problem is my ASP.NET application is loading very slow. When i debuged it, i found its not because of the code it is running slow its after the Load_complete event(which is the last event for any page) it is taking hell lot of time. Can anyone tell me reason behind it or i am missing some attributes to set. Thanks in advance.. Sheel Gohe
Sheel Gohe
Posts
-
Why my site is loading very slow? -
ODP.NET problem -
Zorder problem of dropdownlistHi guys, Do anybody know how to set zorder 0 ("send to back") to dropdownlist as its always render on web page as zorder 1. thanks in advance Sheel Gohe
-
Template field problemWhen I add a TemplateField like a DropDownList to the gridview and databound it. And when i scroll the gridview at runtime then the dropDownList seems to overlap with the header row of the gridview. Any solution to this problem guys.... Thanks in advance Sheel Gohe Sheel Gohe
-
TemplateField overlap while scrolling in gridviewIf I add a TemplateField like a DropDownList to the gridview. And when i scroll the grid then the dropDownList seems to overlap with the header of the grid. Any solution to this problem guys.... Sheel Gohe
-
Overlap with the HeaderRowIf I add a Templatecolumn like a DropDownList to the gridview. Then the dropDownList seems to overlap with the Headerrow. Any ideas guys why its happening.... Thanks in advance.... Sheel Gohe
-
How to make a alert box on Button clicktry: response.write("alert('Hello!');") Sheel Gohe
-
Get a reference of HTML Table bound to a GridViewHow can we get a reference of HTML Table bound to a GridView aconvert gridview as datasource. Like, if i want to add a new row to gridview at runtime, i can access its html table and add a new td to that. Plz help me guys... Thanks in advance Sheel Gohe
-
Fire RowCancelingEdit of gridview programmaticallyMike i tried that but its not working.... Sheel Gohe
-
Fire RowCancelingEdit of gridview programmaticallyHello Friends, How to fire RowCancelingEdit of gridview programmatically. Actually i have implemented Atlas AJAX of Microsoft, and after clicking inbuilt update button of the GridView record is updated but Grid remains in edit mode. Then i have to presss Cancel button to bring it to normal mode. Any solutions to this problem guys.. thanks in advance Sheel Gohe
-
Ho to access the HTML controlNo mike its not marked with the attribute runat="server"? its purely a html control " Any solutions.... Sheel Gohe
-
Ho to access the HTML controlHi Friends, I have a query, how can we access the HTML control from ASP.NET code behind. "FindControl" is throwing error. Thanks in advance Sheel Gohe
-
Serious GridView Problem!Thanks minhpc_bk, You made my day....I wanted to give many thanks to you....God bless you... :) Sheel Gohe
-
Serious GridView Problem!Yes minhpc_bk, the cell 4 simply contains an input control like Textbox in Edit mode, and the Text property returns empty string "".... Do you know the cause!! Sheel Gohe
-
Serious GridView Problem!Hello Friends, I am facing a serious gridview problem, I am binding my gridview from code behind like(myGridView.DataSource=myDataSet; myGridView.DataBind()). But the problem is when i click the inbuilt "edit" button of the grid and the rows comes to edit mode, I cant able to get the cell values in any of the event like row_updating etc. For all the "rows(index)cells(index).Text" its displaying the blank text "". I am not able to figure out what the problem is. Please help me out friends.... I have tried all of these commands: 1). lblMessage.Text = CType(CType(e.CommandSource, LinkButton).NamingContainer, GridViewRow).Cells(4).Text 2). Dim m_ColumnText As String m_ColumnText = GV1.Rows(GV1.EditIndex).Cells(4).Text 3). lblMessage.Text = Server.HtmlDecode(row.Cells(4).Text) All are showing blank text, but i have values in my grid cells i can see it from my eyes.....i am very frustrated....plz...plz...help me out. Thanks in advance. :confused: Sheel Gohe
-
copy a table from SQL SERVER to Access DataBaseHello Friends, I am facing a problem in copying a table from SQL SERVER to Access DataBase. I have identical tables in access database to and what i am trying is creating 2 datasets, one is connected to SQL Server DB and another one is connected to Access DB. Now when I use the "Copy" command of dataset to copy data from one dataset to another dataset and then updating the adapter it throws no error but access database doesnt reflects refreshed data. Do you guys have some working code on this problem. thanks in advance Regards Sheel Sheel Gohe
-
where to download Longhorn SDKCan anyone plz tell me where can i download "longhorn SDK" not Longhorn OS. Plz give me any link if you have.:~ Thanks in advance Sheel Sheel Gohe
-
help me plssssssssssssssdear wilson you have to check the instance of the popped-up form every time you click the button. If form's instance already exist then dont make use of new keyword just use the form's "show" method. Use this method to check instance of the form (may be this could be useful) //***********Start********** private Form isFormAlreadyLoaded(Form ToBeLoadedForm) { foreach (Form LoadedForm in this.MdiChildren) { if ((LoadedForm.Name == ToBeLoadedForm.Name) && ((LoadedForm.Text.Trim ()) == ToBeLoadedForm.Text.Trim())) { return LoadedForm; } else { return ToBeLoadedForm; } } return ToBeLoadedForm; } //***********End********** regards Sheel Gohe
-
Questions on TextBox controlanswers: 1. .Select(); SendKeys.Send("{END}"); 2. .Select(); Sheel Gohe
-
C# 2005 Beta problemI am using C# 2005 beta version. My problem is whenever I stop my code through a breakpoint while debugging the tooltips shown for the functions definations get bold and it remains bold afterwards for ever untill i restart my computer. I am too irritated with this bug. Do anyone know the solution to this problem. Thanks in advance. Regards Sheel Sheel Gohe