Validus … talkin bout <code> n sh!t

27Oct/110

Uncaught Sys.ScriptLoadFailedException: Sys.ScriptLoadFailedException

Posted by Joey

Got this error with a part of our system that users a built in ajax call.

This is the full error stack trace:

1
Uncaught Sys.ScriptLoadFailedException: Sys.ScriptLoadFailedException: The script ‘http://localhost/ScriptResource.axd?d=RdrMrDIqMUWDZUGk1HLoz3DQ–nxs6_OshH5AE4paXP2ecuMfZMCKDB3qoZzh59m8opSrKYYvuUs3nHBBPkMoJetCjuhLVGKnKD6zFvQ_xhQ5PtENGhta9Du8PDUgExG41_pNH4_11kTTLijRHMd4ZYDse01&t=ffffffff8b3ffb57′ failed to load. Check for:

Inaccessible path.

Script errors. (IE) Enable ‘Display a notification about every script error’ under advanced settings.

Missing call to Sys.Application.notifyScriptLoaded().
Sys$WebForms$PageRequestManager$_scriptIncludesLoadCompleteScriptResource.axd:1266
Sys$WebForms$PageRequestManager$_scriptIncludesLoadFailedScriptResource.axd:1304
(anonymous function)ScriptResource.axd:31
(anonymous function)ScriptResource.axd:47… Continue reading

Filed under: C# No Comments
14Jun/110

JavaScript – String Contains

Posted by Joey

Had issues today with passing through a variable to javascript. I needed some sort of function to get partial part of a string. So needed something like, “string contains”.

This can be done by using string.indexOf() – it will return a numeric, if its -1 = false.

So something as simple as:
1… Continue reading

Filed under: Stuff No Comments
22May/090

Visual Basic Cheat Sheets?

Posted by Joey

I found this great little website that displays cheat sheets for different languages. Recently I’ve been working on a VB project and it’s come very handy. If your a developer like me know knows the basic concepts of programming all you need is the syntax of a different language then this is the reference guide you need: http://www.cheat-sheets.org/… Continue reading

Filed under: CF, CSS, Stuff No Comments