HTML and ASP.NET

  • Thread starter Thread starter brians
  • Start date Start date
B

brians

I am a newbie with internet development. I feel pretty
comfortable developing codebehind in the .aspx pages.

Can anyone direct me to some solid sources on the
intranet in how to implement the code behind in with
HTML. I am having a really hard time dynamically
displaying data or positioning things where I need them.

I finally figured out how to display variable info in a
page globally declaring a variable and displaying it with
<%= variable name%>

Please advice or direct me.

Thanks
 
use an
<asp:Label....></asp:Label>

and then populate it from the codebehind
yourLabel.Text = "hello world";
 
http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=asp.net+tutorial


I am a newbie with internet development. I feel pretty
comfortable developing codebehind in the .aspx pages.

Can anyone direct me to some solid sources on the
intranet in how to implement the code behind in with
HTML. I am having a really hard time dynamically
displaying data or positioning things where I need them.

I finally figured out how to display variable info in a
page globally declaring a variable and displaying it with
<%= variable name%>

Please advice or direct me.

Thanks
 
Back
Top