accessinq page
-
hi all, i am using asp.net1.1...and i want to access one page on another page. i am not using frames, but i am using tables and i want to show the page in one cell of the table.. how can i show? sam.
The only way to show a page inside another page is to use an iframe. If you want the contents of the page inside the code of another page, you can't use a complete page. You can only put html fragments into the page, e.g. just the contents of the body tag. --- b { font-weight: normal; }
-
hi all, i am using asp.net1.1...and i want to access one page on another page. i am not using frames, but i am using tables and i want to show the page in one cell of the table.. how can i show? sam.
-
hi all, i am using asp.net1.1...and i want to access one page on another page. i am not using frames, but i am using tables and i want to show the page in one cell of the table.. how can i show? sam.
You could make a user control, put in the second page so it appears unchanged. Then on the first page, put it in the table cell. If you need it more dynamic you could put a placeholder in the table cell and load what ever control you wanted.
-
You could make a user control, put in the second page so it appears unchanged. Then on the first page, put it in the table cell. If you need it more dynamic you could put a placeholder in the table cell and load what ever control you wanted.