Como postei no tópico anteiro estou iniciando com asp.net então começei a fuçar na net e peguei um script no macoratti.net Validação usuando webmatrix , estou usando o vs2010 express bom ta dando um erro na pagina não sei qual é vou postar o codigo aqui ok.
<script language="VB" runat="server">
Sub Valida()
If (Page.IsValid) Then
label1nome.Text = "Email valido"
End If
End Sub
</script>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>primeiro projeto em asp.net</h2>
<form runat="server">
<p>
Digite seu email:<asp:TextBox ID="email" runat="server" Text="email"></asp:TextBox>
<asp:RegularExpressionValidator
ControlToValidate="email"
text="Email Valido"
ValidationExpression="\s@\s+\s(2,3)"
runat="server">
</asp:RegularExpressionValidator>
</p>
<asp:Button ID="btValid" Text="validar" onclick="Valida" runat="server" />
<asp:Label ID="label1nome" runat="server"></asp:Label>
</form>
</asp:Content>
O erro que ta dando
Server Error in '/WebSite2' Application.
Content controls are allowed only in content page that references a master page.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Content controls are allowed only in content page that references a master page.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[HttpException (0x80004005): Content controls are allowed only in content page that references a master page.]System.Web.UI.MasterPage.CreateMaster(TemplateControl owner, HttpContext context, VirtualPath masterPageFile, IDictionary contentTemplateCollection) +8832886
Pergunta
Clauido José
Como postei no tópico anteiro estou iniciando com asp.net então começei a fuçar na net e peguei um script no macoratti.net Validação usuando webmatrix , estou usando o vs2010 express bom ta dando um erro na pagina não sei qual é vou postar o codigo aqui ok.
O erro que ta dando
Link para o comentário
Compartilhar em outros sites
6 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.