LiveZilla Live Help

Our Online Blog

We have put together this blog to help, inform and inlight users regarding the internet, development and design. We also post all our network updates here to make sure you keep up to date with whats going on around you.

Search Blog

ASP.NET Variables

The one of the most important parts of any coding language is variables and how to set them.

For our example we are going to use a ‘String’, please see below our code:

<% String Title = “My Title”; %>

As you can see we are setting a string named ‘Title’ with the string of “My Title”.

Now we want to display (echo / print / output) this to the page:

<%= Title %>

If you wanted to just write some text to the browser, most of the outputs in ASP.NET you will be using the ‘Response.Write()’ command instead:

Response.Write(“My Title”);

Hope you find this helpful.

Tags: , , , , ,

Leave a Reply

You must be logged in to post a comment.