Click here to Skip to main content
15,893,663 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Slow working of web application Pin
Abhishek Sur23-Aug-09 22:09
professionalAbhishek Sur23-Aug-09 22:09 
GeneralRe: Slow working of web application Pin
Girish48123-Aug-09 23:09
Girish48123-Aug-09 23:09 
Questionwhere does the web site adnimistration tool store the membership data Pin
prasadbuddhika23-Aug-09 17:24
prasadbuddhika23-Aug-09 17:24 
AnswerRe: where does the web site adnimistration tool store the membership data Pin
Brij23-Aug-09 19:03
mentorBrij23-Aug-09 19:03 
QuestionAuto resizable textarea Pin
smlud123-Aug-09 15:31
smlud123-Aug-09 15:31 
AnswerRe: Auto resizable textarea Pin
Christian Graus23-Aug-09 16:15
protectorChristian Graus23-Aug-09 16:15 
QuestionRe: Auto resizable textarea Pin
smlud124-Aug-09 2:05
smlud124-Aug-09 2:05 
QuestionUnable to access controls on the page‏ Pin
Abbas8223-Aug-09 14:28
Abbas8223-Aug-09 14:28 
I am trying to set image visibility based on some user information. Howver I always receive the following error message


Compiler Error Message: CS1061: 'XXX.SearchAcme' does not contain a definition for 'acmeBlemont' and no extension method 'acmeBlemont' accepting a first argument of type 'XXX.SearchAcme' could be found (are you missing a using directive or an assembly reference?)


This is my markup and code behind so far...any ideas what the problem could be? I can't seem to figure out what the problem is. Using FindControl did not work either and while debugging the page only seems to have 1 control in the ControlCollection. However, when you hover over "this" on a breakpoint, you can drill down and see the images.


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Search.aspx.cs" src="Search.aspx.cs" Inherits="XXX.SearchAcme"
MasterPageFile="~/Center/Lobby.Master" %>

<asp:Content ID="Content1" ContentPlaceHolderID="SponsorContent" runat="server">
    <img id="acmeBlemont" runat="server" src="/acme/common/custom_images/weblet4_belmont.gif" width="170" height="45" border="0" visible="false" />
    <asp:Image id="acmeVerde" name="acmeVerde" runat="server" ImageUrl="/acme/common/custom_images/weblet4_verde.gif" width="170" height="45" border="0" visible="false" />
</asp:Content>


namespace XXX
{
    public partial class SearchAcme : AdvisorPage
    {
        public SearchAcme()
            : base(ProgressNavIds.ChooseSearchOption)
        {
            
        }

         protected override void OnPreRender(EventArgs e)
        {
            base.OnPreRender(e);
            this.acmeBlemont.Visible = true;
        }
    }
}

AnswerRe: Unable to access controls on the page‏ Pin
DoctorMick24-Aug-09 4:56
DoctorMick24-Aug-09 4:56 
GeneralRe: Unable to access controls on the page‏ Pin
Abbas8224-Aug-09 5:55
Abbas8224-Aug-09 5:55 
QuestionHow to solve the ajax error, "There was an error in the callback." Pin
meeram39523-Aug-09 6:37
meeram39523-Aug-09 6:37 
QuestionHow to get the datagriditem whose radio button is clicked Pin
Ersan Ercek23-Aug-09 6:28
Ersan Ercek23-Aug-09 6:28 
AnswerRe: How to get the datagriditem whose radio button is clicked Pin
Blue_Boy23-Aug-09 8:02
Blue_Boy23-Aug-09 8:02 
QuestionASP.net LoginView Control Pin
VikashGohil23-Aug-09 3:38
VikashGohil23-Aug-09 3:38 
AnswerRe: ASP.net LoginView Control Pin
Brij23-Aug-09 18:56
mentorBrij23-Aug-09 18:56 
Questionone interesting problem for finding file containing # Pin
Seraph_summer23-Aug-09 0:03
Seraph_summer23-Aug-09 0:03 
AnswerRe: one interesting problem for finding file containing # Pin
Blue_Boy23-Aug-09 1:09
Blue_Boy23-Aug-09 1:09 
Questionwhat kind of technology can be used for realize this function? Pin
Seraph_summer22-Aug-09 23:58
Seraph_summer22-Aug-09 23:58 
AnswerRe: what kind of technology can be used for realize this function? Pin
Abhijit Jana23-Aug-09 0:03
professionalAbhijit Jana23-Aug-09 0:03 
GeneralRe: what kind of technology can be used for realize this function? Pin
Seraph_summer23-Aug-09 3:15
Seraph_summer23-Aug-09 3:15 
GeneralRe: what kind of technology can be used for realize this function? Pin
Abhijit Jana23-Aug-09 3:51
professionalAbhijit Jana23-Aug-09 3:51 
GeneralRe: what kind of technology can be used for realize this function? Pin
Seraph_summer23-Aug-09 5:56
Seraph_summer23-Aug-09 5:56 
Questionproblem with deploying the web site in iis server in local host Pin
prasadbuddhika22-Aug-09 19:32
prasadbuddhika22-Aug-09 19:32 
AnswerRe: problem with deploying the web site in iis server in local host Pin
Abhijit Jana22-Aug-09 20:17
professionalAbhijit Jana22-Aug-09 20:17 
GeneralRe: problem with deploying the web site in iis server in local host Pin
prasadbuddhika23-Aug-09 0:07
prasadbuddhika23-Aug-09 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.