webdev

Essential Firefox Plugins/Extensions?

Hi All, What firefox plugins could you not live without, as relates to webdev? My list would be: DBGBar Dom Inspector Firebug Firecookie Google toolbar (useful for seo) Live HTTP ReloadEvery TamperData Web Developer I am always on the lookout for new ones though, so I wonder if anyone knows of any great ones that I may have missed?...

Can I detect XHTML parsing errors using Javascript?

When I have a markup error in my XHTML page, Mozilla Firefox displays the "Yellow Screen of Death", showing only a large red error message on a yellow background. While these errors are rare, they are extremely user-unfriendly. Is there a way I can detect these using Javascript, and thereby send a message back to the server? What I've...

Are there reasons to still use the "@import" css rule?

I recently came across a use of the @import rule on Coda.com. They're actually using to import the main style sheet for the site, specifically the format: <style type="text/css" media="screen"> @import url(./coda.css); </style> Which will hide the rules from Netscape 3 and IE 3 and 4. Since a web development tools primary audience w...

iphone web page transitions

I am developing a web page for iPhones and iPod Touch's. I am using the Universal iPhone UI framework. I need to have silding page transitions, but can't seem to get it working. Is there a good javascript framework I could use that would make this easier? I've done a lot of normal web dev with jquery, but it doesn't seem to like the ...

webdev.webserver.exe has encountered a problem

Hi friends.. i am facing an error "webdev.webserver.exe has encountered a problem" in only one project all other projects are executing/debugging properly.after showing this alert window i do not able to debug my application. after closing and reopening the project is debugged properly. ...

Syncing a site with a local machine?

I do my web development and testing on my laptop running an installation of xampp - I upload things to my host, but I always go through cpanel's file manager to do it. I realize that there's definitely a better way to go about it, but I need to be pointed in the right direction to do so, also other tips on how to manage stuff would be ap...

Using the same code in different (partial) views

Maybe this question is quite simple because I'm new to MVC2. I have a simple demo MVC project. (1) A weak-typed view: Index.aspx <% Html.RenderPartial("ArticalList", ViewData["AllArticals"] as List<Artical>); %> (2) A strong-typed partial view: ArticalList.ascx <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<List<...

Shall I ignore IE6 while developing a website? also any other browser to avoid?

Possible Duplicate: Should we support IE6 anymore? ripie6.com I would like to know which browsers we can avoid. Many sites have stopped support to IE6. So, as developers we can also start avoiding some sites? If yes, what are all? (which versions of what broswers) Even though I have asked the question already here: http://st...

Django auth.User

Hi, I'm developing web page with many type of users, each with different profiles properties. I would like to use built in auth system but: a) I want to use django-registration. b) I can point User.get_profile to only one profile model. How to accomplish that in nice fashion? ...

Where can I find a good open source user account management class/library in PHP?

I am looking for a good framework for user and user group management in PHP. I want a to be able to add/edit/delete profile, save in a db; add/edit/delete groups; assign a user as group leader, nothing more. I tried http://www.phpclasses.org. There are many options there but I simply don't know which once to go for. I don't have much t...