Prev: Windows Server 2008 - Error reading configuration information from the registry.
Next: ASP.NET DataList control call rdlc Reportviewer report
From: Hemant on 4 Nov 2009 06:03 Hi, I am working on asp.net 2008 in c# . I create a website in .net framework 2.0 . I used link button on master page for redirect to home page and logout . these link button are working well till I am not make visible true to a table row in content page. If that table row is visible the event attached to this button are not fired. but all are working fine in firefox . means event are fired in firefox but not IE 7. what is the cause of this problem? Thanks, Hemant
From: Alexey Smirnov on 4 Nov 2009 16:17 On Nov 4, 12:03 pm, "Hemant" <Hem...(a)nomail.com> wrote: > Hi, > > I am working on asp.net 2008 in c# . > I create a website in .net framework 2.0 . > I used link button on master page for redirect to home page and logout . > these link button are working well till I am not make visible true to a > table row in content page. > If that table row is visible the event attached to this button are not > fired. but all are working fine in firefox . > means event are fired in firefox but not IE 7. > what is the cause of this problem? > > Thanks, > Hemant Check if you don't have any javascript error in IE. Maybe you can share your code here, otherwise it's difficult to investigate the problem
From: Hemant on 5 Nov 2009 00:55 Hi, thanks for your reply. there is no javascript. On my pages there are lot of controls . I have three main rows. In first row user enter the number for search . In second row there is a grid in which i display the serch result in a grid. In third row when usre click on any or gird row i displays the grid row detail in textboxes and dropdowns . When I make this third row visible than the link button on master page not make postback . the event releated to these link button not fired. but all are working in FireFox. should i paste my aspx code here ? thanks, Hemant "Alexey Smirnov" <alexey.smirnov(a)gmail.com> wrote in message news:db141bb4-993d-4664-b60e-a81812cf0cbd(a)s15g2000yqs.googlegroups.com... On Nov 4, 12:03 pm, "Hemant" <Hem...(a)nomail.com> wrote: > Hi, > > I am working on asp.net 2008 in c# . > I create a website in .net framework 2.0 . > I used link button on master page for redirect to home page and logout . > these link button are working well till I am not make visible true to a > table row in content page. > If that table row is visible the event attached to this button are not > fired. but all are working fine in firefox . > means event are fired in firefox but not IE 7. > what is the cause of this problem? > > Thanks, > Hemant Check if you don't have any javascript error in IE. Maybe you can share your code here, otherwise it's difficult to investigate the problem
From: Alexey Smirnov on 5 Nov 2009 05:22
On Nov 5, 6:55 am, "Hemant" <Hem...(a)nomail.com> wrote: > Hi, > thanks for your reply. > there is no javascript. A LinkButton and other controls with postback actions are rendered with javascript. For example, <a href="javascript:__doPostBack(.....)" Check if nothing is "blocking" this in IE7. Go to Tools-Options and enable error messages about every script error and debugging script errors. That should help you to see if you have any js errors on the page. If you cannot find any error - please paste your aspx code here. |