Hi,
I am using DNN 3.3.7 (ASP.NET 1.1, SQL 2000)
I have created a new module from the scratch.
When I tried to add the module into a page, I receieved the following error message
Multiple controls with the same ID were found.
FindControl requires that controls have unique IDs
I used the following dnn file
<name>SF.Test</name>
<friendlyname>SF Test</friendlyname>
<modulename>SFTest</modulename>
<description>v1.1 SF Test DNN 3.3.7 </description>
<version>01.00.00</version>
<modules>
<module>
<friendlyname>MainPage</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<title>Test</title>
<src>Testascx</src>
<type>View</type>
</control>
<control>
<title>Confirmation page</title>
<src>Confirm.ascx</src>
<type>View</type>
</control>
<control>
<title>List Students</title>
<src>ListStudents.ascx</src>
<type>View</type>
</control>
</controls>
</module>
</modules>
If anyone knows a good solution to this please let me to know. Thanks.
Doru