forum

Home / DeveloperSection / Forums / Visual Web Dev/ASP.net VB Button click

Visual Web Dev/ASP.net VB Button click

Anonymous User209611-Jun-2013
Hi Guys

There is a problem with button click event

my line of code as following 

        <asp:Image ID="Image1" runat="server" Height="57px" ImageUrl="~/img/logo.png" 
            Width="36px" />
        <strong>&nbsp;Test</strong> System </h1>
            <form action="" enctype="multipart/form-data" class="pcss3f">
            <header><asp:Label ID="lblOverview" runat="server" Text=""></asp:Label></header>
                <section class="state-normal" style="text-align:center">
                <button type="button" onclick="window.location = 'AddItem.aspx'">Add Work Item</button>
                <button type="button" id="btnMyWork" name="btnMyWork" onclientclick="btnMyWork_Click" runat="server">My Work Items</button>
                <button type="button">Database Stats</button>
                <br>
                </br>
                <asp:Label ID="lblWhoAmI" runat="server" Text=""></asp:Label>
                </section>
<footer><asp:Label ID="lblWhoAmI2" runat="server" Text=""></asp:Label></footer>
    </form>

The button I'm referring to is this:

<button type="button" id="btnMyWork" name="btnMyWork" onclientclick="btnMyWork_Click" runat="server">My Work Items</button>

And here's the VB I'm trying to get it to run:

Protected Sub btnMyWork_Click()
        lblOverview.Text = "Success"
        lblWhoAmI.Text = "Success"
    End Sub

But when I click it, nothing happens. I've tried adding a click handler in the aspx.vb code but the ".click" won't show in the Intelligent.

 Thanks

Updated on 12-Jun-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By