web page destroyed after deployment

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ram09
    New Member
    • Oct 2008
    • 45

    web page destroyed after deployment

    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
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    Does your a third party component site have a help or FAQs section?

    Comment

    • anhdtuan
      New Member
      • May 2016
      • 1

      #3
      @ ram09: how do you fix this problem?

      Comment

      Working...