AJAX Help
-
Hello All, Thank you for reading this post. I am new to AJAX development. Here is my situation. I have a masterpage that has 3 image buttons. On clicking on each it should show the content page in the contenttemplate without a postback.So it is dynamic and show the latest and greatest page.So clicking imageA should show pageA.aspx, clicking imageB should show pageB.aspx and so forth without a postback. Ofcourse all the content pages will inherit from this master page. How do i go about it? Code examples/sample websites would help immensely ! please note, i am a .NET 2.0 developer making the jump to .NET 3.5 and AJAX. So a total newbie. Regards RH
-
Hello All, Thank you for reading this post. I am new to AJAX development. Here is my situation. I have a masterpage that has 3 image buttons. On clicking on each it should show the content page in the contenttemplate without a postback.So it is dynamic and show the latest and greatest page.So clicking imageA should show pageA.aspx, clicking imageB should show pageB.aspx and so forth without a postback. Ofcourse all the content pages will inherit from this master page. How do i go about it? Code examples/sample websites would help immensely ! please note, i am a .NET 2.0 developer making the jump to .NET 3.5 and AJAX. So a total newbie. Regards RH
Are you using AJAX, or the ASP.NET/AJAX library ? Do you want to show this new page without a postback, so it replaces the entire screen ? I don't really see the point here. You don't need a postback, you DO need a redirect. You can't help but load the new page, AJAX can't really change that.
Christian Graus Driven to the arms of OSX by Vista. Please read this[^] if you don't like the answer I gave to your question. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
-
Hello All, Thank you for reading this post. I am new to AJAX development. Here is my situation. I have a masterpage that has 3 image buttons. On clicking on each it should show the content page in the contenttemplate without a postback.So it is dynamic and show the latest and greatest page.So clicking imageA should show pageA.aspx, clicking imageB should show pageB.aspx and so forth without a postback. Ofcourse all the content pages will inherit from this master page. How do i go about it? Code examples/sample websites would help immensely ! please note, i am a .NET 2.0 developer making the jump to .NET 3.5 and AJAX. So a total newbie. Regards RH
hi friend, i dont think it is possible to invoke content page within content template of the master page without a post back. Content page is seperate page and invokin it surely makes a post back to occur. I would suggest u to design a page with update panel and wizard control within it. u can place the controls of each page in each tab index and on click of image buttons, just change the active index of the wizard control like wzdname.ActiveStepIndex = 1; since all the design is within the same page, u can achieve ur need without postback. hope it works.