User1763161047 posted
I am back to this problem again. Something that seems so simple but yet had alluded me as to how to resolve it. In short here is the issue. There are many functions that AJAXToolkIt would bring to my website project.
I am running Microsoft Visual Developer 2015 on my development laptop. And I am running IIS services also on the laptop along with SQL Server development tools. All that is working great. I can incorporate AJAX Toolkit and functions on
a web page and they run perfectly on my laptop. But the page then fails on my shared hosting site with GoDaddy. I get a Parser Error. See below;
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 1:
Line 2: <%@ Page Language="VB" MasterPageFile="~/NoMenuMaster.master" AutoEventWireup="true" CodeFile="login.aspx.vb" Inherits="logiin" %>
Line 3: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
Line 4:
Line 5:
|
Here is what I know which is not much but from my research.
The Parser Error is coming from the fact that AJAXToolkit is not installed and running on the hosting server. The file that is needed is an AJAXToolKit.dll file. That is supposed to be placed in the BIN folder. However, I did not have a
BIN folder on my hosting. I had a cgi-ben, error_docs, logs, and HTTP does where my asp files and java files reside. I created a BIN in the root with the other folders listed and then placed the ajaxcontroltoolkit.dll and AjaxControlToolKit.refresh
files in that folder but that did not resolve the issue.
I did read where I need to give the server permission to run the dll file and that would go in my web.config file but there was not syntax or example code provided with that instruction.
I have visited a great many pages and everyone that has it working seems to think this is a simple question. But they never seem to offer any real solution. Others who seem to be having the same issue have no resolutions in their post.
Is there anyone who knows how to get AjaxControlToolKit configured and running on a shared Windows Server?
Please help?