Method that helps to merge some ASPX pages

Asked By 0 points N/A Posted on -
qa-featured

I am wondering whether there is a tried and tested method that can help me to merge some ASPX pages that I have into one page. At first I was thinking of using an embedded IE but for security reasons I am denied by ASP. I am trying to avoid a situation whereby I would be forced to create a new form – copying all fields and back end CRM code in order to regenerate both pages in the asp.net. I would like the method to perform functions such as taking all the functionality of the contact information and contact notes which am yet to find. Any idea is welcome.

SHARE
Best Answer by windstrife
Answered By 0 points N/A #108249

Method that helps to merge some ASPX pages

qa-featured

The first option I may give you is to add controls on page of destination from your sourcing page. You can also then create quering strings to manage controls. Then switch on what you want to load.You may also decide to keep all that in one ASPX File. You also can use panels in containing the controls need for each section. Next show the panel as needed, this option should not be complex as ASPX will be postbacked to the same page. I hope this will help you in the operation of merging ASPX pages and all the other operations you aspire to do. 

Best Answer
Best Answer
Answered By 0 points N/A #108251

Method that helps to merge some ASPX pages

qa-featured

I, myself, is software and web developer. With regards to your concern I have been doing that merging of aspx pages for quite several times.

Convert your aspx pages (these pages are called web forms) to ascx pages (these kind of pages refers to web user controls). Once you're done with it, you may call or include any web user control (ascx page) on a single web form (aspx page). Creating ascx pages is easy and is just like creating aspx page.

In addition, a web form (aspx page) can be added into a master page. On the other hand, master pages can only include one web form at a time but it is a nice tool if you want to switch the content of the page. All you have to do is to change the web form in the master page.

Related Questions