Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Visual studio. Net not working


Message #1 by Msingh9@a... on Tue, 12 Mar 2002 10:01:43 EST
Hi all



I installed visual studio.net and write couple of pages which includes, text, label controls of asp.net, But all pages are not
viewing in internet explorer. All server controls are not working, will anybody will help me.



Mohan

Message #2 by "Manuj Sarpal" <manujsarpal@h...> on Tue, 12 Mar 2002 15:12:30 -0000
Hi mohan,



Which version of iis are you using..?



Manuj



----- Original Message -----

From: <Msingh9@a...>

To: "ASP+" <aspx@p...>

Sent: Tuesday, March 12, 2002 3:01 PM

Subject: [aspx] Visual studio. Net not working





> Hi all

>

> I installed visual studio.net and write couple of pages which includes,

text, label controls of asp.net, But all pages are not viewing in internet

explorer. All server controls are not working, will anybody will help me.

>

> Mohan

>




>

Message #3 by Msingh9@a... on Tue, 12 Mar 2002 18:45:10 EST
Hi Manoj 

iis 5.0 version is there.



My SQL server and iis name is same, is it will effect?

I will appreciate your help. My code as is below and i am not able to see any text box,button and lable.

<Script Runat="Server">



Sub Button_Click( s As Object, e As EventArgs )

  If IsValid Then

    Response.Redirect( "ThankYou.aspx" )

  End If

End Sub



</Script>



<html>

<head><title>CompareValidatorDataTypeCheck.aspx</title></head>

<body>



<form Runat="Server">



Enter your birth date:

<asp:TextBox

  id="txtBirthDate"

  Columns="10"

  Runat="Server"/>



<asp:CompareValidator

  ControlToValidate="txtBirthDate"

  Display="Dynamic"

  Text="Invalid birth date!"

  Operator="DataTypeCheck"

  Type="Date"

  Runat="Server" />



<p>



<asp:Button

  Text="Submit"

  OnClick="Button_Click"

  Runat="Server"/>



</form>



</body>

</html>




  Return to Index