G
Grant Merwitz
Hi
I have a control on a web page with just a datagrid.
For some reason, post back is not working on this page.
You can view this page here:
http://www.workshare.com/company/blog/default2.aspx
Now, this page has a control on it that is a simple as:
<asp
ataGrid id="dg" runat="server"/>
The page using this is also simple:
<%@ Register TagPrefix="uc1" TagName="MyControl"
Src="../../UserControls/MyControl.ascx" %>
<form runat="server">
<uc1:MyControl id="MyControl1" runat="server"></uc1:MyControl>
<asp:Button id="btn" runat="server"/>
</form>
I have Attached an event on this button, that just writes hello to the page
private void btn_Click(object sender, System.EventArgs e)
{
Response.Write("HELLO");
}
Now, as you'll observe when you click the button, the page just hangs.
Why is this happening, and how can i fix this.
On Other pages, the post back works fine
http://www.workshare.com/test.aspx
And this also works perfectly in my development environment.
Its just on my server where this hangs
Details:
Server
Microsoft Windows Server 2003
ASp.Net version : v1.1.4322
IIS: 6.0
(No Service Packs) --> Is this the possible cause??
Development Machine
Microsoft Windows Server 2003
ASP.Net version:v1.1.4322
IIS: 6.0
(Service Pack 1)
Please help, i've been testing this for hours, and NOTHING
TIA
I have a control on a web page with just a datagrid.
For some reason, post back is not working on this page.
You can view this page here:
http://www.workshare.com/company/blog/default2.aspx
Now, this page has a control on it that is a simple as:
<asp
The page using this is also simple:
<%@ Register TagPrefix="uc1" TagName="MyControl"
Src="../../UserControls/MyControl.ascx" %>
<form runat="server">
<uc1:MyControl id="MyControl1" runat="server"></uc1:MyControl>
<asp:Button id="btn" runat="server"/>
</form>
I have Attached an event on this button, that just writes hello to the page
private void btn_Click(object sender, System.EventArgs e)
{
Response.Write("HELLO");
}
Now, as you'll observe when you click the button, the page just hangs.
Why is this happening, and how can i fix this.
On Other pages, the post back works fine
http://www.workshare.com/test.aspx
And this also works perfectly in my development environment.
Its just on my server where this hangs
Details:
Server
Microsoft Windows Server 2003
ASp.Net version : v1.1.4322
IIS: 6.0
(No Service Packs) --> Is this the possible cause??
Development Machine
Microsoft Windows Server 2003
ASP.Net version:v1.1.4322
IIS: 6.0
(Service Pack 1)
Please help, i've been testing this for hours, and NOTHING
TIA