Click here to Skip to main content
15,918,889 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Changing the Page Title at runtime Pin
Not Active3-Aug-06 7:57
mentorNot Active3-Aug-06 7:57 
AnswerRe: Changing the Page Title at runtime Pin
ToddHileHoffer3-Aug-06 8:10
ToddHileHoffer3-Aug-06 8:10 
QuestionChanging the Title of an aspx page Pin
RizShiney3-Aug-06 7:40
RizShiney3-Aug-06 7:40 
AnswerRe: Changing the Title of an aspx page Pin
Ista3-Aug-06 8:41
Ista3-Aug-06 8:41 
QuestionCustom Control won't do 2-way databinding in FormView Pin
M@Coder3-Aug-06 7:01
M@Coder3-Aug-06 7:01 
AnswerRe: Custom Control won't do 2-way databinding in FormView Pin
minhpc_bk3-Aug-06 15:45
minhpc_bk3-Aug-06 15:45 
GeneralRe: Custom Control won't do 2-way databinding in FormView Pin
M@Coder3-Aug-06 22:04
M@Coder3-Aug-06 22:04 
GeneralRe: Custom Control won't do 2-way databinding in FormView Pin
minhpc_bk3-Aug-06 23:58
minhpc_bk3-Aug-06 23:58 
Perhaps the problem might be somewhere else either in the control or in the way you use the control in the testing web page. Below is a quick example:
[DefaultProperty("DataValue")]
[ToolboxData("<{0}:CustCtrlTest runat=server></{0}:CustCtrlTest>")]
public class CustCtrlTest : CompositeControl
{
    TextBox valueTextBox;

    [Bindable(true)]
    [Category("Appearance")]
    [DefaultValue("")]
    [Localizable(true)]
    public string DataValue
    {
        get
        {
            EnsureChildControls();

            return valueTextBox.Text;
        }
        set
        {
            EnsureChildControls();

            valueTextBox.Text = value;
        }
    }

    protected override void CreateChildControls()
    {
        Controls.Clear();
        CreateControlHierarchy();
        ClearChildViewState();
    }

    protected virtual void CreateControlHierarchy()
    {
        valueTextBox = new TextBox();
        valueTextBox.ID = "valueTextBox";
        Controls.Add(valueTextBox);
    }
}

GeneralRe: Custom Control won't do 2-way databinding in FormView Pin
M@Coder4-Aug-06 0:53
M@Coder4-Aug-06 0:53 
QuestionHow to add intervel time in application Pin
ChennaiBabu3-Aug-06 5:00
ChennaiBabu3-Aug-06 5:00 
AnswerRe: How to add intervel time in application Pin
Paddy Boyd3-Aug-06 5:13
Paddy Boyd3-Aug-06 5:13 
AnswerRe: How to add intervel time in application Pin
ChennaiBabu3-Aug-06 5:25
ChennaiBabu3-Aug-06 5:25 
GeneralRe: How to add intervel time in application Pin
Not Active3-Aug-06 5:40
mentorNot Active3-Aug-06 5:40 
QuestionNavigation Controls Pin
RJLuppino3-Aug-06 4:59
RJLuppino3-Aug-06 4:59 
AnswerRe: Navigation Controls Pin
minhpc_bk3-Aug-06 15:47
minhpc_bk3-Aug-06 15:47 
QuestionFriendly urls in ASP.NET Pin
Alexandr Sergeevich Ilyin3-Aug-06 4:10
Alexandr Sergeevich Ilyin3-Aug-06 4:10 
AnswerRe: Friendly urls in ASP.NET Pin
User 17164923-Aug-06 5:35
professionalUser 17164923-Aug-06 5:35 
Questionproject not working in mozilla Pin
Amit Agarrwal3-Aug-06 4:04
Amit Agarrwal3-Aug-06 4:04 
AnswerRe: project not working in mozilla Pin
Guffa3-Aug-06 6:11
Guffa3-Aug-06 6:11 
Questionstock ticker Pin
jeevanchowlur3-Aug-06 3:58
jeevanchowlur3-Aug-06 3:58 
AnswerRe: stock ticker Pin
Not Active3-Aug-06 4:52
mentorNot Active3-Aug-06 4:52 
QuestionHow to know the name of the country ? Pin
Subrahmanyam K3-Aug-06 3:03
Subrahmanyam K3-Aug-06 3:03 
AnswerRe: How to know the name of the country ? Pin
Mike Ellison3-Aug-06 3:47
Mike Ellison3-Aug-06 3:47 
GeneralRe: How to know the name of the country ? Pin
Subrahmanyam K3-Aug-06 19:51
Subrahmanyam K3-Aug-06 19:51 
QuestionImag WebControl and some Problems...! Pin
amin_behzadi3-Aug-06 3:01
professionalamin_behzadi3-Aug-06 3:01 

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.