tag:blogger.com,1999:blog-30404818.comments2023-09-11T05:58:23.458-05:00Web Dev .NETTesthttp://www.blogger.com/profile/14667340517136058696noreply@blogger.comBlogger173125tag:blogger.com,1999:blog-30404818.post-55736010678556861942021-10-29T13:34:36.587-05:002021-10-29T13:34:36.587-05:00This is awesommeThis is awesommeJudyhttps://www.judyromero.com/noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-56215175732606165752020-11-25T13:24:16.832-06:002020-11-25T13:24:16.832-06:00This is a topic that is near to my heart... Many t...This is a topic that is near to my heart... Many thanks! Where are your contact details though?erectilehttps://besterectiledysfunctionpills.com/noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-45325619804548198302012-01-31T23:02:40.679-06:002012-01-31T23:02:40.679-06:00Don't ever use $._data() for any reason at all...Don't ever use $._data() for any reason at all, ever. I will personally close every bug filed against it as "wontfix" without prejudiceRick Waldronhttp://twitter.com/rwaldronnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-40634780514975202732011-07-29T05:53:22.469-05:002011-07-29T05:53:22.469-05:00This comment has been removed by a blog administrator.buzzingstreethttp://www.buzzingstreet.comnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-46795450962691370972010-07-23T17:47:48.564-05:002010-07-23T17:47:48.564-05:00Thanks to the instructions, This was driving me cr...Thanks to the instructions, This was driving me crazy.Anonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-29469743673456577902009-10-13T11:11:41.301-05:002009-10-13T11:11:41.301-05:00Dear sir
are you have a mvc unleashed or any othe...Dear sir<br /><br />are you have a mvc unleashed or any other ebooks if yes then <br />send it to<br /><br />anirudhakumar.gupta@gmail.comAnonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-35105651781329444642009-07-04T00:40:57.337-05:002009-07-04T00:40:57.337-05:00http://www.neathighlighter.com is an easy to use c...<a href="http://www.neathighlighter.com/" rel="nofollow">http://www.neathighlighter.com</a> is an easy to use code highlighter and is the only highlighter which supports different language codes in a single fileAnonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-23848755487669298982009-07-01T07:48:11.571-05:002009-07-01T07:48:11.571-05:00NotesForLightBox is a simple, unobtrusive script u...NotesForLightBox is a simple, unobtrusive script used to overlay images on the current page. It’s a snap to setup and works on all modern browsers.<br />The current functionalities are: <br /><br />Rounded corners light box<br />Navigation with buttons<br />Real slide show with progress bar<br /><br />Live demo:<br />http://www.notesfor.net/post/NotesForLightBox.aspxUnknownhttps://www.blogger.com/profile/05476312141336096389noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-56112908994679254972009-07-01T03:38:22.106-05:002009-07-01T03:38:22.106-05:00That can be done with CSS selectors without having...That can be done with CSS selectors without having to use Javascript. Most recent versions of all major browsers implement this feature.Timnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-61103636875350576662009-06-30T16:43:12.201-05:002009-06-30T16:43:12.201-05:00"Wow, I hadn't thought about it that way ..."Wow, I hadn't thought about it that way before. Good write up,<br />>> very clearly written. Have you written previously about "Zebra Striping"? I'd<br />>> love to read more."Unknownhttps://www.blogger.com/profile/00038973050531230032noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-69492280760551573302009-06-30T10:43:58.470-05:002009-06-30T10:43:58.470-05:00I am going to have to strongly disagree with this ...I am going to have to strongly disagree with this article.<br /><br />The original way that you were handling the styling of the tables - before you learnt jQuery - was much superior for both the user experience and from the point of view of code simplicity and maintenance.<br /><br />It is generally best practise for front end development that:<br /><br />> HTML handles the structure and content of the document,<br /><br />> CSS handles the presentation,<br /><br />> and Javascript handles adding behaviours.<br /><br />What we are dealing with here is the presentation of a table, therefore we should only be reaching for Javascript as a last resort. As long as the structure of the document is correct then this effect can be completely achieved using simple CSS. <br /><br />There no need to use Javascript let alone jQuery. The disadvantages of a javascript solution are:<br /><br />> <b>Increased page weight.</b><br /><br />> <b>Slower page rendering.</b> - the styles will not be displayed until the JS has downloaded and been processed. (This could be very significant to mobile users)<br />> <b>More complicated code</b> - if the classes are not it the source code it may require knowledge of the JS functions to write the CSS. And the JS function itself is much more complicated than a simple if() statement in the .aspx file.<br /><br />So what are the advantages of this method? It seems that the advantages are slightly cleaner .aspx file. In my view this isn't worth the trade.<br /><br />I think it would be helpful to see the view as the combination of the .aspx files, the CSS and the Javascript. This way when you consider "want[ing] to keep our Views in MVC as simple as possible" you'll be considering the system as a whole and won't be tempted by false economies in one technology at the expense of the others.<br /><br />It's worth noting that all modern browsers except IE6 will allow your to add a hover psuedo class to tr elements. This removes the need for adding the events to each row of the table. Adding these events to a large table would be very likely to cause significant delays in the page display. If you need the hover effect for IE Javascript is the only option, but it would be much more efficient to use event delegation - I would recommend simply not providing this effect for IE6 users though.edeveretthttps://www.blogger.com/profile/07201757043725798161noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-58354558995496687802009-06-30T08:41:56.325-05:002009-06-30T08:41:56.325-05:00well lol it wasnt really here i wanted to post... ...well lol it wasnt really here i wanted to post... anyway good work@miguedesousanoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-32679021215050547802009-06-30T08:41:01.690-05:002009-06-30T08:41:01.690-05:00well if i didn't like girls so much i would ma...well if i didn't like girls so much i would marry you!!! thanx "your tha shi'|'"@migueldesousanoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-79859773964395316162009-06-17T11:30:09.931-05:002009-06-17T11:30:09.931-05:00Eck - I accidentally hit "block" instead...Eck - I accidentally hit "block" instead of "follow" on your twitter request... and that seems to have bounced your follow... sorry 'bout that - retry and should be fine now.Taryn Easthttps://www.blogger.com/profile/00647732421144825421noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-86431736467469466302009-06-16T23:09:45.408-05:002009-06-16T23:09:45.408-05:00Invitation to new programming Resources Website
...Invitation to new programming Resources Website<br /><br /><br /><br />Dear Sir,<br /><br />I hope you are doing well. I got this email address from one of your contribution web site. I have launched a web site www.codegain.com and it is basically aimed C#,JAVA,VB.NET,ASP.NET,AJAX,Sql Server,Oracle,WPF,WCF and etc resources, programming help, articles, code snippet, video demonstrations and problems solving support. I would like to invite you as an author and a supporter.<br />Looking forward to hearing from you and hope you will join with us soon.<br /><br />Thank you<br />RRaveen<br />Founder CodeGain.comRRavehttps://www.blogger.com/profile/02162942492813501463noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-1650407661823271182009-06-12T17:03:43.949-05:002009-06-12T17:03:43.949-05:00Great list of .NET thought leaders! Thanks for pos...Great list of .NET thought leaders! Thanks for posting. <br /><br />I've added most of them and now my twitter account is much more useful!Bryant Hankinshttp://www.bryanthankins.com/techblognoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-46566381254840152982009-06-12T13:20:44.313-05:002009-06-12T13:20:44.313-05:00I also find it very useful site http://visualjquer...I also find it very useful site http://visualjquery.com/.<br />Especially, for starters.Anonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-782899865261292232009-06-11T14:33:37.709-05:002009-06-11T14:33:37.709-05:00Hello, do you use some tool to import Twits to Del...Hello, do you use some tool to import Twits to Delicious Account? <br />Thanks.Andreinoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-89020975933584923792009-06-11T14:13:27.021-05:002009-06-11T14:13:27.021-05:00These are great resources. Another one I like is a...These are great resources. Another one I like is at www.jquerytools.org, although I'm sure that's just one out of a ton that are out there.UTAlanhttp://www.sixtwentyblog.comnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-13536075538053851542009-06-05T14:35:20.812-05:002009-06-05T14:35:20.812-05:00PlanetSourceCode.in<a href="http://www.planetsourcecode.in" rel="nofollow">PlanetSourceCode.in</a>Anonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-52300126600211576062009-06-05T14:34:35.374-05:002009-06-05T14:34:35.374-05:00I tried your example thanks
http://www.planetsourc...I tried your example thanks<br />http://www.planetsourcecode.inAnonymousnoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-36859061108321809982009-05-31T18:29:41.677-05:002009-05-31T18:29:41.677-05:00this one's going on Deliciousthis one's going on DeliciousKdgDevhttps://www.blogger.com/profile/11231491634357108696noreply@blogger.comtag:blogger.com,1999:blog-30404818.post-10564503844711125842009-05-30T10:18:32.355-05:002009-05-30T10:18:32.355-05:00Simple cross-browser solution here: http://jsbin.c...Simple cross-browser solution here: http://jsbin.com/ejopo/bganickynoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-74771568359032929642009-05-30T10:06:03.658-05:002009-05-30T10:06:03.658-05:00Have you tried the demo in Firefox 3.5? It seems t...Have you tried the demo in Firefox 3.5? It seems to be broken there, see http://i40.tinypic.com/2j0ms6u.pngbganickynoreply@blogger.comtag:blogger.com,1999:blog-30404818.post-9671950119011821432009-05-29T22:18:28.701-05:002009-05-29T22:18:28.701-05:00Very innovative approach to a presentation with th...Very innovative approach to a presentation with the eye candy up front, then more "candy" to show how you did it, then some!<br /><br />I enjoyed the presentation. ThanksAgile.Nethttps://www.blogger.com/profile/00158165919564845597noreply@blogger.com