asp.net Label is an ambiguous reference

Please support our ASP.NET advertiser: Intel Parallel Studio Home
Reply

Join Date: Apr 2009
Posts: 16
Reputation: diya0076 is an unknown quantity at this point 
Solved Threads: 0
diya0076 diya0076 is offline Offline
Newbie Poster

asp.net Label is an ambiguous reference

 
0
  #1
Sep 25th, 2009
hello i have one formview control n i want to retrive values from that n add save them in local variables

<asp:FormView ID="FormView1" runat="server" DataSourceID="SqlDataSource1" Style="z-index: 100;
        left: 210px; position: absolute; top: 173px" Width="299px" BackColor="#DEBA84" BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3" CellSpacing="2" GridLines="Both" DataKeyNames="pcode">
        <ItemTemplate>
            pcode:
            <asp:Label ID="pcodeLabel" runat="server" Text='<%# Eval("pcode") %>'></asp:Label><br />
            <br />
            pname:
            <asp:Label ID="pnameLabel" runat="server" Text='<%# Eval("pname") %>'></asp:Label><br />            
            <br />
            <asp:ImageButton ID="ImageButton1" runat="server" PostBackUrl='<%# Eval("purl","display.aspx?purl=items/{0}") %>' ImageUrl='<%# Eval("purl","items/{0}") %>' Height="30%" Width="30%" />&nbsp;<br />

            <br />
            <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/icon/button_addtocart.gif" Width="60px" OnClick="ImageButton2_Click"/>
            <br />

            price:
            <asp:Label ID="priceLabel" runat="server" Text='<%# Eval("price", "{0:c}") %>'></asp:Label>
            Rs.
        </ItemTemplate>
        <FooterTemplate>
            <a href="ipods.aspx">Return to the main shop</a>
        </FooterTemplate>     
        
    </asp:FormView>



this is .cs file code for imagebutton's click event:

 protected void ImageButton2_Click(object sender, System.Web.UI.ImageClickEventArgs e)
    {
        string pname = ((Label)FormView1.FindControl("pnameLabel")).Text;
        string price = ((Label)FormView1.FindControl("priceLabel")).Text;
        double price = double.Parse(p.ToString());
    }


i get error while retriving values of labels :

Error 1 'Label' is an ambiguous reference between 'System.Web.UI.WebControls.Label' and 'System.Windows.Forms.Label'

n for double.Parse: like : "Input string was not in a correct format"
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 2,052
Reputation: serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light 
Solved Threads: 118
Featured Poster
serkan sendur serkan sendur is offline Offline
Postaholic

Re: asp.net Label is an ambiguous reference

 
0
  #2
Sep 25th, 2009
Use fully qualified class names and it will solve the problem, or post your project in its entirety.
Due to lack of freedom of speech, i no longer post on this website.
Reply With Quote Quick reply to this message  
Join Date: Jun 2009
Posts: 433
Reputation: Ramesh S will become famous soon enough Ramesh S will become famous soon enough 
Solved Threads: 82
Ramesh S Ramesh S is offline Offline
Posting Pro in Training

Re: asp.net Label is an ambiguous reference

 
0
  #3
Sep 26th, 2009
I think you have added System.Windows.Forms namespace in you class file. Check whether the line "using System.Windows.Forms" exist on top of your class file and remove it.
Reply With Quote Quick reply to this message  
Join Date: Apr 2009
Posts: 16
Reputation: diya0076 is an unknown quantity at this point 
Solved Threads: 0
diya0076 diya0076 is offline Offline
Newbie Poster

Re: asp.net Label is an ambiguous reference

 
0
  #4
Sep 26th, 2009
ya u r correct.. i have added using System.Windows.Forms namespace.. by writing fully qualified class name it works.

thanx..!
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 2,052
Reputation: serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light serkan sendur is a glorious beacon of light 
Solved Threads: 118
Featured Poster
serkan sendur serkan sendur is offline Offline
Postaholic

Re: asp.net Label is an ambiguous reference

 
0
  #5
Sep 26th, 2009
mark as solved please
Due to lack of freedom of speech, i no longer post on this website.
Reply With Quote Quick reply to this message  
Reply

Message:



Similar Threads
Other Threads in the ASP.NET Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC