Datagrid "edit" image not working

  • Thread starter Thread starter Nalaka
  • Start date Start date
N

Nalaka

Hi (I am using visual studio 2005 beta 2)

I have a simple asp.net data grid, with a edit (update and cancel) set.

When the button mode is link, it works fine.

But when the button mode is image, it does not work??????

What am I doing wrong
Any help is appreciated


Thanks
Nalaka
 
Hi Nalaka,

Welcome to ASPNET newsgroup.
For the ASP.NET 2.0 GridView 's Image style command button problem you
mentioned, based on my local test, it seems that this is likely a project
or page specific issue. My local ASP.NET 2.0 beta2 environment seems didn't
repro this problem. Here is the GridView's aspx template I used:

<Columns>
.............
<asp:CommandField ButtonType="Image"
CancelImageUrl="~/App_Image/cancel.GIF" EditImageUrl="~/App_Image/edit.GIF"
ShowEditButton="True"
UpdateImageUrl="~/App_Image/update.GIF" />
</Columns>

Have you also tried the test in other projects or pages to see whether its
page/project specific. In addition, since this is a whidbey beta issue, we
also suggest you try posting in the msdn beta forum since there're many
other community members which may have some ideas:

http://forums.microsoft.com/msdn/

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)





--------------------
| From: "Nalaka" <[email protected]>
| References: <O#[email protected]>
| Subject: Re: Datagrid "edit" image not working
| Date: Thu, 28 Jul 2005 16:05:12 -0700
| Lines: 3
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Response
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: m181-9.bctransit.bc.ca 199.60.181.9
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP14.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:115064
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| it is a gridView, I am using....
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top