Link to home
Start Free TrialLog in
Avatar of Member_2_5230414
Member_2_5230414

asked on

VB - lable.text wont show?

Hi ALL - For some reason the page wont show the lable.tex - its just blank here :

have i missed something out in the code?

Imports System.Net 
Imports System.IO 

Partial Class football_home
    Inherits System.Web.UI.Page

		Sub Page_Load(sender as Object, e as EventArgs)
		
			lblHTMLOutput.text = "heyho"

  End Sub
	
End Class

Open in new window

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="home.aspx.vb" Inherits="football_home" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
<h1>Screen Scrape </h1>
  <p>
  <asp:label id="lblHTMLOutput" runat="server" />
    </form>
</body>
</html>

Open in new window

Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Other than the lowercase "t" at the start of "Text" it looks ok. If you put a break point at the start of the Page_Load method, does it get hit?
Avatar of Member_2_5230414
Member_2_5230414

ASKER

Yup seems all ok to me but here it shows nothing - http://jarrattperkins.com/football/home.aspx
You are also missing a closing </p> tag - although I don't imagine that would be causing it not to display properly.
nope that didnt fix it...i just dont get it lol
If you put a break point in the code and check the value of the Text property immediately after you set it, does it show empty, or does it show the correct value?
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I cant believe i kept missing that!
Do not specify VB script when you ask a question dealing with .NET. They are very different things. This is like adding MS-DOS to a question about the new Windows 8 interface. Be more precise in what you are doing in .NET.

ASP.NET would have been a lot better choice, because it would have attracted more programmers who develop for the web.