OK, this might be a dumb one but I am a little confused I am newer to the asp side of things so sorry if it is a stupid one. I am using VB.Net to make my aspx pages. I am using java script to show message boxes. I want to make a yes/no message box and make something happen on the code side of things. I used to use something like
dim result
result=msgbox("Do You want this feature", vbyesno)
if result=vbyes then
blah blah blah
but how do I comunicate the java script alert result to trigger some code in my .vb file? Or can I use some sort of message box? Thanks.
dim result
result=msgbox("Do You want this feature", vbyesno)
if result=vbyes then
blah blah blah
but how do I comunicate the java script alert result to trigger some code in my .vb file? Or can I use some sort of message box? Thanks.