473,473 Members | 1,842 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Problems with button control containing text and image

Hello all. I am trying to implement my first server control and have
run into two problems that I cannot solve. I need the assistance of
someone with more experience.

My goal was to create an input button that would allow for both text
and an image on it. I am attempting to accomplish this by basing off
of the asp:button control. I added a property for the image url and
one to determine if the image is displayed on the left or right of the
text. I am also overriding the necessary methods so that the html that
is rendered is correct. (The code is included below.)

In my aspx file I put two instances of the control:

<tlic:ImageTextButton ID="btnSaveAll" runat="server" Text="Save All"
ImageUrl="Images/Diskette.gif" />
<tlic:ImageTextButton ID="btnEmailAll" runat="server" Text="Email All"
ImageUrl="Images/Envelope.gif" OnClientClick="return GetRecipients();"
/>

It renders the following in the html to the browser:

<button type="submit" name="btnSaveAll" value="Save All"
id="btnSaveAll"><img id="btnSaveAll_Img" name="btnSaveAll:Img"
src="Images/Diskette.gif" border="0" />&nbsp;Save All</button>
<button type="submit" name="btnEmailAll" value="Email All"
onclick="return GetRecipients();" language="javascript"
id="btnEmailAll"><img id="btnEmailAll_Img" name="btnEmailAll:Img"
src="Images/Envelope.gif" border="0" />&nbsp;Email All</button>

So far, all is good. The problems come in when I click one of the
buttons. The first problem is that ASP.NET complains when validating
the response because the value of the button is being returned as the
inner html rather than what is in the Value attribute. Since there is
an IMG tag there it thinks the data is suspect. Here is the form data:

__EVENTTARGET
__EVENTARGUMENT
__VIEWSTATE /wEPDwUKMTgzNj(snip)...
emailRecipients
gridAuthKeys:_ctl2:tbRANumber
gridAuthKeys:_ctl2:tbPONumber
gridAuthKeys:_ctl2:tbMustArriveBy
btnSaveAll <IMG id=btnSaveAll_Img src="Images/Diskette.gif" border=0
name=btnSaveAll:Img>&nbsp;Save All
btnEmailAll <IMG id=btnEmailAll_Img src="Images/Envelope.gif" border=0
name=btnEmailAll:Img>&nbsp;Email All

I figured I would deal with that later so I turned off page validation
to see if the rest of the processing would work. The second problem is
that no matter which button I click, ASP.NET fires off the event
handler for which ever is the last, or second, button, in this case
"email all". Again, I think the value of the button controls is
messing it up.

I tried setting the buttons to UseSubmit=False vs. True but that
didn't help. An interesting thing to note is that according to the
HTML spec, if a form contains more than one submit button, only the one
clicked is supposed to be included in the form data returned. This is
not what is happening here.

I would greatly appreciate any time that someone could spend to help me
with this.

Regards,

David

Here is the code for the control:

Imports Microsoft.VisualBasic
Imports System
Imports System.Web
Imports System.Web.UI
Imports System.ComponentModel
Imports System.Drawing.Design

Namespace TLI.Controls

''' <summary>
''' A control rendered as a button that has both an image and text.
''' </summary>
''' <remarks></remarks>
<ToolboxData("<{0}:ImageTextButton
runat=server></{0}:ImageTextButton>")_
Public Class ImageTextButton
Inherits WebControls.Button

<Bindable(True), _
Category("Appearance"), _
DefaultValue(""), _
Editor("System.Windows.Forms.ImageEditorIndex, System.Design",
GetType(UITypeEditor)), _
Description("The image to appear on the button")_
Public Property ImageUrl() As String
Get
Dim s As String = CStr(ViewState("ImageURL"))
Return IIf(s Is Nothing, "", s)
End Get
Set(ByVal value As String)
ViewState("ImageURL") = value
End Set
End Property

<Bindable(True), _
Category("Appearance"), _
DefaultValue(True), _
Description("True if the image is to appear to the left of the
text")_
Public Property ImageLeft() As Boolean
Get
Dim o As Object = ViewState("ImageLeft")
Return IIf(o Is Nothing, True, CBool(o))
End Get
Set(ByVal value As Boolean)
ViewState("ImageLeft") = value
End Set
End Property

Protected Overrides ReadOnly Property TagKey() As
HtmlTextWriterTag
Get
Return HtmlTextWriterTag.Button
End Get
End Property

Protected Overrides Sub RenderContents(ByVal writer As
System.Web.UI.HtmlTextWriter)
If ImageLeft Then
RenderImage(writer)
writer.Write("&nbsp;")
End If
writer.Write(Text)
If Not ImageLeft Then
writer.Write("&nbsp;")
RenderImage(writer)
End If
End Sub

Private Sub RenderImage(ByVal writer As
System.Web.UI.HtmlTextWriter)
writer.AddAttribute(HtmlTextWriterAttribute.Id, ID &
"_Img")
writer.AddAttribute(HtmlTextWriterAttribute.Name, ID &
":Img")
writer.AddAttribute(HtmlTextWriterAttribute.Src, ImageUrl)
writer.AddAttribute(HtmlTextWriterAttribute.Border , "0")
writer.RenderBeginTag(HtmlTextWriterTag.Img)
writer.RenderEndTag()
End Sub
End Class
End Namespace

Sep 7 '06 #1
0 1846

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Christopher Brandsdal | last post by:
Hi! I have a anoying problem with my editor! What i want to do is make a popup that holds a string for the "hyperlink" window... I have a popup to do this before, and it works perfecty, but in...
10
by: BBFrost | last post by:
We just recently moved one of our major c# apps from VS Net 2002 to VS Net 2003. At first things were looking ok, now problems are starting to appear. So far ... (1) ...
0
by: Gastin | last post by:
I am digesting a web serivce from Amazon.Com. I have the following class which was autogenerated by VS.NET when I created a Web Reference to...
17
by: Lloyd Sheen | last post by:
This IDE is driving me nuts. I needed another button so I copied an existing one, changed the Text and the id and position by drag and drop. Well then I run and get the following: Control...
4
by: Tim::.. | last post by:
Can someone please help.... I'm having major issues with a user control I'm tring to create! I an trying to execute a sub called UploadData() from a user control which I managed to do but for...
0
by: Tim::.. | last post by:
Can someone please help.... I'm having major issues with a user control I'm tring to create! I an trying to execute a sub called UploadData() from a user control which I managed to do but for...
1
by: Andrew | last post by:
Hello Everyone I am receiving an error in an application I am working on. The application when its done will be a Dungeons and Dragons Network game. I am having problems with the Networked...
9
by: kombu67 | last post by:
I'm reading a series of images from a MS SQL table and saving them to directory. These are staff ID pictures from our security card app. Once I've extracted the ID photo from the security app to...
3
by: hzgt9b | last post by:
I want a page with a centered div containing two rows. Top row has an image and some text. The bottom row needs to have three columns. I'd love to have the 1st column set to a fixed width then have...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.