Skip to main content

Lindsay Donaghe's Library tagged troubleshooting   View Popular

30 Sep 08

Why ASP.NET AJAX UpdatePanels are dangerous | Encosia

Good arguments against over-use of UpdatePanels and some sample script of how to replace their functionality with JSON calls.

encosia.com/...jax-updatepanels-are-dangerous - Preview

codesnippets asp.net ajax troubleshooting web development tutorials

  • <asp:ScriptManager ID="ScriptManager1" runat="server"
    EnablePageMethods="true" />
    <script language="javascript">
    function UpdateTime() {
    PageMethods.GetCurrentDate(OnSucceeded, OnFailed);
    }
     
    function OnSucceeded(result, userContext, methodName) {
    $get('Label1').innerHTML = result;
    }
     
    function OnFailed(error, userContext, methodName) {
    $get('Label1').innerHTML = "An error occured.";
    }
    </script>
    <asp:Label runat="server" ID="Label1" Text="Update Me!" /><br />
    <input type="button" id="Button2" value="Web Method Update"
    onclick="UpdateTime();" />
  • [WebMethod]
    public static string GetCurrentDate()
    {
    return DateTime.Now.ToLongDateString();
    }

Safari Developer FAQ

Looks like some of this is for the older versions of Safari but still helpful for those of us who don't use this beast very much.

developer.apple.com/...faq.html - Preview

safari web development faq troubleshooting tutorials codesnippets

05 Aug 08

Firebug Lite - Webmonkey

Sweet! A cross-browser version of Firebug that can even work with IE. This will most definitely come in handy.

www.webmonkey.com/...Tools_That_Work_in_Any_Browser - Preview

web development javascript debugging troubleshooting tools libraries downloads free useful ie firefox safari crossbrowser

12 Jun 08

SonSpring | Removing Dotted Links

How to get rid of those annoying dots around active links in FF and IE (for use with the text-indent method of image replacement).

sonspring.com/...removing-dotted-links - Preview

css troubleshooting web development codesnippets firefox ie

  • a:active
    {
    outline: none;
    }
  • :focus
    {
    -moz-outline-style: none;
    }
10 Jun 08

File Recovery: How to Recover Deleted Files with Free Software

A good tutorial with steps on how to recover several different types of files from several different media.

lifehacker.com/...leted-files-with-free-software - Preview

recovery windows tutorials troubleshooting systemsengineering

09 Jun 08

Finally, the alternative fix for IE6's memory leak is available

A solution for settimeout memory leaks in IE6 that utilizes the finally portion of a try/catch block.

www.hedgerwow.com/...ie6_memory_leak_fix - Preview

javascript ie troubleshooting memoryleak codesnippets

28 May 08

MagicPoint presentation foils

Presentation by the creator of Ruby on problems with the language. Interesting browse.

www.rubyist.net/...index.html - Preview

ruby language powerpoint lecture troubleshooting languages compsci development

26 May 08

http://simon.incutio.com/notes/2006/summit/schachter.txt

A list of tips by Joshua Schacter, founder of Del.icio.us on how to build large internet applications. Talks about how to figure out what features to offer, how to build to scale, and how to leverage other people's services (don't reinvent the wheel).

simon.incutio.com/...schachter.txt - Preview

web development guidelines tips scaling design troubleshooting

25 May 08

Web Development Bookmarklets

Some tools to help with debugging and troubleshooting web development contained as bookmarklets. Some of these do what FireBug or some of the standard sidebar tools in FireFox do, but could be useful in other browsers.

www.squarefree.com/...webdevel.html - Preview

css web development debugging troubleshooting bookmarklets firefox tools javascript

22 May 08

24 ways: Diagnostic Styling

How to use CSS to find things in legacy HTML that should be cleaned up to make the site more accessible, such as font and center tags, and leaving alt text off of images.

24ways.org/...diagnostic-styling - Preview

css troubleshooting debugging accessibility ui techniques codesnippets

15 May 08

Top reasons your CSS columns are messed up - Warpspire

Explanation with examples of common pitfalls in setting up columns with CSS. Includes codesnippets of how to to fix the problems as well. Great to help you save time and keep your hair on your head instead of in your hands.

warpspire.com/...css-column-tricks - Preview

css web development tutorials troubleshooting codesnippets

  • .sidebar{
    float:left;
    margin-left:20px;
    display:inline
    }
  • .columns{
    width:500px;
    }
    .columns .main{
    float:left;
    width:400px;
    overflow:hidden;
    }
    .columns .sidebar{
    float:right
    width:100px;
    overflow:hidden;
    }
  • 1 more annotations...
08 May 08

How to enable pretty urls with Asp.Net MVC and IIS6 : Bia Securities

Even though MVC works fine from the default web, it has problems with virtual directories and requires using the wildcard or something like the routing solution suggested here.

biasecurities.com/...urls-with-asp-net-mvc-and-iis6 - Preview

asp.net mvc routing web development codesnippets troubleshooting urls iis

Jeff Meyer's Blog - Deployment Fun with ASP.Net MVC Preview 2

Jeff describes his workarounds for some of the deployment issues with ASP.Net MVC CTP 2 on an ISP using a Virtual Directory.

jeffmeyer.name/...tFunWithASPNetMVCPreview2.aspx - Preview

asp.net mvc web development troubleshooting iis

File Unlocker

A tool for Windows that lets you finally delete that file/folder that it keeps telling you is being used but you swear is not.

ccollomb.free.fr/unlocker - Preview

development downloads software systemsengineering tools troubleshooting windows

  • Finally, a way to get Windows to delete the *&^%$#! file already!! - bluecockatoo on 2006-08-23
05 May 08

OctaGate SiteTimer

A tool that times how long it takes a web page to load and breaks it down by file in a graph to figure out where the bottlenecks are.

www.octagate.com/...SiteTimer - Preview

web development tools performance troubleshooting

24 Apr 08

On having layout — the concept of hasLayout in IE/Win

A good list of options on how to trigger hasLayout in IE, including for IE 7.

www.satzansatz.de/...onhavinglayout.html - Preview

codesnippets crossbrowser css development ie troubleshooting web

  • Good article on why so many css "flow" bugs in IE are fixed by adding width or height to elements. - bluecockatoo on 2006-08-26

  • A lot of Internet Explorer's rendering inconsistencies can be fixed by giving an element “layout.”
    John Gallant and Holly Bergevin classified these inconsistencies as “dimensional bugs,” meaning that they can often be solved by applying a width or height.
    • Consequences of an element having, or not having “layout” can include:



      • Many common IE float bugs.
      • Boxes themselves treating basic properties differently.
      • Margin collapsing between a container and its descendants.
      • Various problems with the construction of lists.
      • Differences in the positioning of background images.
      • Differences between browsers when using scripting
  • 4 more annotations...
23 Apr 08

Cutting Edge: AJAX application architecture, Part 2

An article on the two different approaches to using Ajax with ASP.Net including some caveats and security issues.

msdn2.microsoft.com/...cc163347.aspx - Preview

ajax asp.net web development troubleshooting

1 - 20 of 69 Next › Last »
Showing 20 items per page

Highlighter, Sticky notes, Tagging, Groups and Network: integrated suite dramatically boosting research productivity. Learn more »

Join Diigo