If anyone else encounters a problem even after the changes mentioned by @sridharnetha, try including the following lines.
It is important to add UseAbsoluteHandlerPath = "false"
<ajax:AjaxFileUpload ID="AjaxFileUpload11" runat="server" MaximumNumberOfFiles="3" AllowedFileTypes="txt,xls,xlsx,doc,docx,pdf" Width="400px" UseAbsoluteHandlerPath ="false" OnUploadComplete="OnUploadComplete" OnClientUploadStart="UploadStart" OnClientUploadCompleteAll="UploadComplete" ClearFileListAfterUpload="true" OnClientUploadError="UploadError"/>
In web.config
<httpHandlers> <add verb="*" path="http://localhost/AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" /> </httpHandlers>
source share