I am trying to figure out why I cannot see my multiview control whenever I run my project. Here see the code below. Please tell me what I am doing wrong and why I cannot see my multiview when I run the project and why can't I even see a simple label when i run the project? Thanks!
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Questionaire.asp
x.vb" Inherits="Member_Questiona
ire" %>
<!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 style="background-color:Wh
ite; color:Black;" runat="server">
<form id="form1" runat="server">
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Employee
ScreeningC
onnectionS
tring %>" SelectCommand="SELECT QuestionNumber, Question FROM Exam_Question WHERE ExamID = (SELECT ExamID FROM Exam WHERE ActiveExam = 'True') ORDER By QuestionNumber"></asp:SqlD
ataSource>
<div id="pagediv" style="width:100%; text-align:center;" runat="server">
<div id="questionairediv" style="width:50%; margin-left:auto; margin-top:250px; margin-right:auto;" runat="server">
<asp:Label runat="server">hello</asp:
Label>
<asp:MultiView ID="Multiview1" Visible="true" runat="server">
<asp:View ID="View1" EnableViewState="true" runat="server">
<asp:Label ID="label1" runat="server">Please answer the following questions</asp:Label>
</asp:View>
</asp:MultiView>
</div>
</div>
</form>
</body>
</html>