Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

marin007

@marin007
About
Posts
5
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Detecting Flash
    M marin007

    Is there a way to detect if the client is capable of playing Flash animations?

    ASP.NET adobe question

  • newbie
    M marin007

    Read the solution here. This guy had the same problem.

    ASP.NET asp-net csharp oop question

  • Web Control Problem
    M marin007

    Thanks... It works now.

    ASP.NET design sysadmin help question

  • Visual Studio.NET -> ASP.NET problem
    M marin007

    Have you checked that IIS is running? I had the same problem and the solution was to activate the IIS and to reinstall the .NET Framework.

    ASP.NET csharp asp-net visual-studio help

  • Web Control Problem
    M marin007

    I am trying to make a simple control with a button and a label. When you click the button the text of the label should change from "A" to "B" but it doesn’t work. Can anybody tell me what am I doing wrong? using System; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; namespace WebControlLibrary1 { [DefaultProperty("Text"), ToolboxData("<{0}:WebCustomControl1 runat=server>")] public class WebCustomControl1 : System.Web.UI.WebControls.WebControl { private Button b; private Label l; public WebCustomControl1() { b=new Button(); b.Text="Click me!"; b.Click+=new EventHandler(this.b_Click); l=new Label(); l.Text="A"; } private void b_Click(object sender, System.EventArgs e) { l.Text="B"; } protected override void Render(HtmlTextWriter output) { b.RenderControl(output); l.RenderControl(output); } } }

    ASP.NET design sysadmin help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups