Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Everyone
I am doing project in asp.net with vb.I am using timer in my form, so i am using script manager for that.
at the local host it run properly, but at the time of running of website it's not work.It gives error like,
Unknown server tag 'asp:ScriptManager'

Please Help me to solve this problem
Posted
Updated 14-Oct-10 23:39pm
v3
Comments
demouser743 15-Oct-10 5:26am    
Which frame work you are using
aparnaChandras 15-Oct-10 5:35am    
Visual Studio 2008
thatraja 15-Oct-10 5:43am    
Recheck my updated answer
aparnaChandras 15-Oct-10 5:47am    
I am using vs 2008 for that what i have to do

What's your VS version? 2005 or 2008? In VS 2005, you should refer the System.Web.extensions.dll & also register in your page like below,
<%@ Register Assembly="System.Web.Extensions" Namespace="System.Web.UI" TagPrefix="asp" %>

So verify these things are there, being things are present & it still gives you error then mention more details. Let us know.

Verify this in your web.config file

XML
<pages>
     <controls>
              <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      </controls>
</pages>
 
Share this answer
 
v2
I think Ajax .dll is mission on your deployment server. Please check..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900