Hi,
I'm having problems getting my label to update, it is a asp:label known as LabelFMI - what I am doing is when the user changes the value of certain things update it by either taking away or adding the difference. I've managed to get this to work by having
to refresh the page and moving it to out of the function I made for it and into default.aspx's Page_load sub..
However I was hoping to not have to refresh to have it update? is there anyway to achieve this?
this is the code im using - I've been reading about using ajax and have just added it into my project however cant find any code examples that give me and idea on how to do this.
Private Sub UpdateLabels(ByVal start As Date, ByVal [end] As Date, ByVal value As Double)
'Import the data for the table
Dim da As New SqlDataAdapter("SELECT * FROM [event] WHERE NOT (([eventen ...
Go to the complete details ...