CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2007
    Location
    South Africa
    Posts
    263

    Nagivating from a aspx page to a silverlight page

    This is the price i pay when i mixed silverlight and aspx pages in my application.

    Good day guys, have some done this before ?


    I want to redirect to a xaml page from a aspx page. i am using response.redirect.

    Code:
      Response.Redirect("http://vuyswam/cc/Ecpos/Views/ConfirmationPages/ConfirmRegistration.xaml",false);
    Thanks
    Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."

  2. #2
    Join Date
    Oct 2005
    Posts
    175

    Re: Nagivating from a aspx page to a silverlight page

    you can call the xaml page inside an aspx page only. xaml page cannot be called as mentioned by you. if you want to call an xaml page, call an aspx page, and host your xaml page inside that aspx page.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured