ASP.Net AJAX Problem With VB.Net
-
Hi All... Can any body say how can we ajaxify the exsiting VB.Net Site? We need a timer that ticks for every second....but the page is flickering for every second... we know we can solve it in C#... but how can we in VB? Can any body help us out plllllzzz...... :(( Thanks in advance :) Regards Nanda Abhishek
-
Hi All... Can any body say how can we ajaxify the exsiting VB.Net Site? We need a timer that ticks for every second....but the page is flickering for every second... we know we can solve it in C#... but how can we in VB? Can any body help us out plllllzzz...... :(( Thanks in advance :) Regards Nanda Abhishek
1 - there's an ASP.NET forum 2 - if you can do it in C#, of course you can do it in VB.NET. Just make the syntax ugly :-) 3 - what sort of timer do you need ? Your question makes no sense. A timer can be run in javascript, without any AJAX, unless it then needs to contact the server, and if it does, I don't see why it should flicker, it would flicker if you had a js timer that refreshes the page, obviously, but that's not AJAX.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Hi All... Can any body say how can we ajaxify the exsiting VB.Net Site? We need a timer that ticks for every second....but the page is flickering for every second... we know we can solve it in C#... but how can we in VB? Can any body help us out plllllzzz...... :(( Thanks in advance :) Regards Nanda Abhishek
As Christian Graus suggested, you should post this question in ASP.NET. There is ASP.NET Ajax Timer control. You can use it with UpdatePanel in your site. But you need to learn more about ASP.NET Ajax..
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
As Christian Graus suggested, you should post this question in ASP.NET. There is ASP.NET Ajax Timer control. You can use it with UpdatePanel in your site. But you need to learn more about ASP.NET Ajax..
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
Thanks for the reply.... The problem is i need an asp.net ajax timer in my website.... I am developing this website using vb.net...as al we know we cannot stop the page flickering(in normal asp.net website)unless we use Ajax... so i wanted to ajaxify my website... so i drag n dropped Update panel,timer,Script manager n label to do this n i have also written the required code in TIMER TICK event.... here comes my problem... the page is again flickering as if it flickers for a normal asp.net page... I also have added all the assemblies that are required for my asp.net web.config file from an asp.net ajax web.config file... I did the same for C#...Worked out then... :( Help me out plzz.... Thanks regards Abhishek Nanda Kumar
-
Thanks for the reply.... The problem is i need an asp.net ajax timer in my website.... I am developing this website using vb.net...as al we know we cannot stop the page flickering(in normal asp.net website)unless we use Ajax... so i wanted to ajaxify my website... so i drag n dropped Update panel,timer,Script manager n label to do this n i have also written the required code in TIMER TICK event.... here comes my problem... the page is again flickering as if it flickers for a normal asp.net page... I also have added all the assemblies that are required for my asp.net web.config file from an asp.net ajax web.config file... I did the same for C#...Worked out then... :( Help me out plzz.... Thanks regards Abhishek Nanda Kumar
If you're updating major portions of the page every second, the page will change/flicker every second. It doesn't particularly matter if you're using AJAX or not. AJAX is useful for avoiding full-page updates, by updating only the bits that actually change. Trust us - get a book. You'll save yourself a lot of time and frustration.