Hi again,
I'm currently (re)creating a "classic" ASP site into an ASP.net site. Off course I encountered some typical problems, and one of them was the "include" problem. The older ASP site uses A LOT of includes and so I tried to find a decent ASP.net solution. I read on this site that ASP.net uses user controls to replace them, and so I changed it in my source code. For example I have 2 pages, one which I use as a header and one which I use to display my content. The header uses a textfield and a button where users can enter keywords. This button uses an onclick event which calls a javascript function. The other page uses a dropdownlist and a datagrid. When someone picks a value from the dropdownlist the datagrid should be renewed. This page uses both javascript and visual basic functions to handle events. Both pages (and events) worked fine until I started using user controls instead of includes. The layout of both pages was remained... but every control with an event on my page now had problems. The header didn't call the javascript any more, when a value of the dropdownlist was selected the datagrid wasn't renewed and the dropdownlist changed the selected value back into it's original (standard) value, so in other words the dropdownlist was initiated (don't know if this is the correct word i mean a verb for initialisation) again. I thought perhaps this was a one of kind problem but when I started transforming other pages with user controls they had the same problem. Another page to upload files had a button which didn't respond anymore to the onclick event. Does someone know what the problem is?
I've considered using a global class/file where all code is stored instead of includes but what to do then with the html code... I fear this will change my layour majorly. So I don't think this is an option.
Another remark I have: as I mentioned earlier the older ASP pages use A LOT of includes: for example a certain file includes 2 files and those files include 4 files and each of these files include another 2 files... can I just replace all of them by user controls?
Hope someone can help...
Scally
I'm currently (re)creating a "classic" ASP site into an ASP.net site. Off course I encountered some typical problems, and one of them was the "include" problem. The older ASP site uses A LOT of includes and so I tried to find a decent ASP.net solution. I read on this site that ASP.net uses user controls to replace them, and so I changed it in my source code. For example I have 2 pages, one which I use as a header and one which I use to display my content. The header uses a textfield and a button where users can enter keywords. This button uses an onclick event which calls a javascript function. The other page uses a dropdownlist and a datagrid. When someone picks a value from the dropdownlist the datagrid should be renewed. This page uses both javascript and visual basic functions to handle events. Both pages (and events) worked fine until I started using user controls instead of includes. The layout of both pages was remained... but every control with an event on my page now had problems. The header didn't call the javascript any more, when a value of the dropdownlist was selected the datagrid wasn't renewed and the dropdownlist changed the selected value back into it's original (standard) value, so in other words the dropdownlist was initiated (don't know if this is the correct word i mean a verb for initialisation) again. I thought perhaps this was a one of kind problem but when I started transforming other pages with user controls they had the same problem. Another page to upload files had a button which didn't respond anymore to the onclick event. Does someone know what the problem is?
I've considered using a global class/file where all code is stored instead of includes but what to do then with the html code... I fear this will change my layour majorly. So I don't think this is an option.
Another remark I have: as I mentioned earlier the older ASP pages use A LOT of includes: for example a certain file includes 2 files and those files include 4 files and each of these files include another 2 files... can I just replace all of them by user controls?
Hope someone can help...
Scally