Fixes/Workarounds

“Object expected” error in IE. when using $(document).ready(function()

1

To fix this

check  the jquery script tag , if it is like

<script  type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>

replace it like

<script language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>

and the error goes away

why IE gives the error on type=”text/javascript” i really do not know

if any one know the reason do let me know

Form covers taskbar when maximized

0

if you are using a title less / border less form  or FormBorderStyle.None then your form when maximized will cover the task bar

if you want the title less form to just expand  to working area of the screen and exclude the task bar then you need to set the maximum size of the form like

Me.MaximumSize = Screen.PrimaryScreen.WorkingArea.Size

also this will work for primary screen will not work in dual screen setup

Could not find any resources appropriate for the specified culture or the neutral

0

Could not find any resources appropriate for the specified culture or the neutral culture. Make sure “AjaxControlToolkit.Properties.Resources.resources” was correctly embedded or linked into assembly “AjaxControlToolkit” at compile time, or that all the satellite assemblies required are loadable and fully signed.

Solution : Drag a new toolkitscriptmanager on to the form and use any new ajax control on that page. This will work.

Go to Top