We are using a third party component in our site... when the first time we deployed the site using this component, we encounter an error telling
" PowUpload module not found! You may be forgot to add the
<httpModules> section in the Web.config file."
then I figured out that I need to transfer the httpmodules of the component from the <system.web><ht tpmodules>.... to the <system.webserv er><module>
<system.web>
<httpModules>
<add name="ElementIT .PowUpload.Uplo adModule" type="ElementIT .PowUpload.Uplo adModule, Element-IT.PowUpload" />
</httpModules>
</system.web>
<system.webServ er>
<validation validateIntegra tedModeConfigur ation="false" />
<modules>
<add name="ElementIT .PowUpload.Uplo adModule" preCondition ="integratedMod e" type="ElementIT .PowUpload.Uplo adModule, Element-IT.PowUpload" />
</modules>
</system.webServe r>
when I tried this, our site did not encounter any errors then, but the problem is that the UI of our website seems to be broken, it was all plane text and it doesnt have any designs, it was all plane white page...
can anyone have an idea what seems to be the problem with this? tnx
" PowUpload module not found! You may be forgot to add the
<httpModules> section in the Web.config file."
then I figured out that I need to transfer the httpmodules of the component from the <system.web><ht tpmodules>.... to the <system.webserv er><module>
<system.web>
<httpModules>
<add name="ElementIT .PowUpload.Uplo adModule" type="ElementIT .PowUpload.Uplo adModule, Element-IT.PowUpload" />
</httpModules>
</system.web>
<system.webServ er>
<validation validateIntegra tedModeConfigur ation="false" />
<modules>
<add name="ElementIT .PowUpload.Uplo adModule" preCondition ="integratedMod e" type="ElementIT .PowUpload.Uplo adModule, Element-IT.PowUpload" />
</modules>
</system.webServe r>
when I tried this, our site did not encounter any errors then, but the problem is that the UI of our website seems to be broken, it was all plane text and it doesnt have any designs, it was all plane white page...
can anyone have an idea what seems to be the problem with this? tnx
Comment