Our online blog

Posts Tagged ‘variables’

ASP.NET Variables

Tuesday, June 16th, 2009

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.