Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net Security (http://www.velocityreviews.com/forums/f62-asp-net-security.html)
-   -   DataGrid ButtonColumn Framework corrupt (http://www.velocityreviews.com/forums/t768755-datagrid-buttoncolumn-framework-corrupt.html)

Andrew 07-04-2006 12:58 AM

DataGrid ButtonColumn Framework corrupt
 
I know my NET Framework is corrupt. The event ItemCommand fires on my laptop
using the NET Framework and on a remote computer. But, I can not get the
event to fire on my local computer.

Event: DataGrid1_ItemCommand fires (works)
<asp:DataGrid>
<asp:ButtonColumn Text="Select" CommandName="Select"
ButtonType="PushButton"></asp:ButtonColumn>
</asp:DataGrid>

I am subscribing to the Event DataGrid1_ItemCommand but it does not Fire for
the LinkButton. It fires every time for a PushButton, but nothing happens
when I change the PushButton to a LinkButton.

FAILS TO FIRE: DataGrid1_ItemCommand (fails)
<asp:DataGrid>
<asp:ButtonColumn Text="TestButton" CommandName="TestButton"
ButtonType="LinkButton"></asp:ButtonColumn>
</asp:DataGrid>

I have read and followed each step in the KB article, but I still have the
problem:
http://support.microsoft.com/kb/824643

I have tried to repair the Net Framework 1.1 and 2.0. I have uninstalled
the Framework 1.1 and used Framework 2.0. I uninstalled Framework 2.0 and
used Framework 1.1. I have tried it in VS 2003 and VS2005. The LinkButton
(ButtonType) will not fire any events.

Can anyone help me? Thanks
Andrew


All times are GMT. The time now is 11:26 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57