Formatting numbers and page reload

M

Morten Snedker

The following code works well:

If Not Double.Parse(Me.txtTilslutning.Text) Then
Me.txtTilslutning.ForeColor = Drawing.Color.Red
Else
Me.txtTilslutning.ForeColor = Drawing.Color.Black
End If

The only problem is, that it reloads the page, in which I'm not
interested.

Which is the proper way to do this without reloading the page, but
still show the changes client-side?

Regards /Snedker
 
M

Mark Rae

If Not Double.Parse(Me.txtTilslutning.Text) Then
Me.txtTilslutning.ForeColor = Drawing.Color.Red
Else
Me.txtTilslutning.ForeColor = Drawing.Color.Black
End If

The only problem is, that it reloads the page, in which I'm not
interested.

Why does it reload the page? In which method does this code reside?
Which is the proper way to do this without reloading the page, but
still show the changes client-side?

If you want dynamic content which doesn't reload the page, you (more or
less) have two choices:

1) client-side JavaScript

2) Ajax
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top