RSS SubjectsBlogs about "Query"

Query

Using CORS to access ASP.NET services across domains
2011-12-19 07:25:00
Work on client-side applications long enough and it’s just about inevitable that you’ll eventually want to make an AJAX request that breaches the browser’s XMLHttpRequest security restrictions. Limitations on cross-domain requests are great when they’re preventing malicious sites from malfeasing, but are a thorn in the side when they complicate your legitimate applications. Traditionally, direct ... You've been reading Using CORS to access ASP.NET services across domains, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: Save yourself some typing when you call ASP.NET services ASMX and JSON – Common mistakes and misconceptions Using jQuery to Consume ASP.NET JSON Web Services
Help me organize my posts about using jQuery with ASP.NET
2011-11-29 20:12:00
One of the longest running themes here has been the compelling intersection between ASP.NET and jQuery. Beginning with my post about using jQuery to circumvent ASP.NET AJAX’s client-side apparatus for calling ASMX services, I’ve been writing about using ASP.NET and jQuery since the Spring of 2008. As these related posts have accumulated over the years, ... You've been reading Help me organize my posts about using jQuery with ASP.NET, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: Best of 2008: 5 most popular posts Best of 2007: 5 most popular posts (and contest winners) 3 mistakes to avoid when using jQuery with ASP.NET AJAX
Supersized 3.2 ? Fullscreen Slideshow jQuery Plugin
2011-10-31 15:49:00
Supersized es un script que permite crear presentaciones de diapositivas de fondo y ha pantalla completa, todo bajo la librería jQuery. Es versión de Supersized tiene temas, vínculos directos de diapositivas, precarga dinámica, y una API. Características Cambia el tamaño de las imágenes para llenar completamente el navegador, manteniendo obvio la dimensión de la imagen ...
Why PhoneGap 1.1.0 broke jQuery Mobile?s back button
2011-10-19 20:01:00
For the past week, I’ve been neck-deep in a challenging project that combines jQuery Mobile and PhoneGap to do some relatively heavy lifting. Though I’ve used both jQuery Mobile and PhoneGap in the past, this recent exercise left me with a few morsels of newly-hard-earned knowledge. Among that education was learning that PhoneGap 1.1.0 breaks ... You've been reading Why PhoneGap 1.1.0 broke jQuery Mobile’s back button, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: Disable a button control during postback. A few thoughts on jQuery templating with jQuery.tmpl jQuery 1.6.2 syntax error? You may be the victim of SEO.
SimpleModal ? Modal Boxes by MooTools
2011-10-13 19:03:00
SimpleModal es un plugin MooTools para la creación de modal boxes (cajas) con mucha facilidad. SimpleModal es ligero y puede utilizarse para mostrar alertas / cuadros de diálogo de confirmación, además de cualquier contenido HTML (texto, imagen, video, etc.) Para confirmar los cuadros de diálogo, proporciona una función de devolución de llamada. Además, SimpleModalpuede trabajar ...
ASP.NET page methods are only as secure as you make them
2011-09-08 18:47:00
One of the most persistent misconceptions about ASP.NET’s page methods is the notion that they have some intrinsic protection against requests that don’t originate from the page where they’re defined. Since a page method’s code resides within a page’s code-behind file, it’s intuitive to assume that those methods benefit from some form of inherent security. ... You've been reading ASP.NET page methods are only as secure as you make them, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: Using jQuery to directly call ASP.NET AJAX page methods Why do ASP.NET AJAX page methods have to be static? Using complex types to make calling services less… complex
Use ASP.NET?s HttpHandler to bridge the cross-domain gap
2011-08-02 16:59:00
When you’re developing client-side applications, a problem you’ll almost inevitably have to deal with is how to work with services that reside outside your website’s domain. Though many modern APIs do support JSONP, which is a clever workaround to somewhat mitigate the cross-domain problem, JSONP has its own problems. Worse, if you encounter an API ... You've been reading Use ASP.NET’s HttpHandler to bridge the cross-domain gap, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: AJAX, file downloads, and IFRAMEs The easiest way to break ASP.NET AJAX pages Why ASP.NET AJAX UpdatePanels are dangerous
jQuery 1.6.2 syntax error? You may be the victim of SEO.
2011-07-06 16:11:00
A reader contacted me this weekend to inform me that jQuery 1.6.2 had broken all of my old examples of using jQuery with ASP.NET services. Not good! How could such a simple update have caused this?! I didn’t really expect that updating from jQuery 1.6.1 to 1.6.2 would break anything, much less break everything. As ... You've been reading jQuery 1.6.2 syntax error? You may be the victim of SEO., originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: What ASP.NET developers should know about jQuery Hear me talk jQuery and ASP.NET on the jQuery Podcast Mastering jQuery now available at TekPub
Tipped ? The Javascript Tooltip Framework
2011-06-17 19:21:00
Tipped Javascript es un nuevo proyecto de nickstakenburg, el cual nos presenta otra práctica forma para generar hermosos tooltips. Es una evolución generada a partir del popular Prototip, pero llevado al segundo nivel mediante el uso de HTML 5 para darle un control total sobre la apariencia. Al igual que en otros proyectos con similares ...
Save yourself some typing when you call ASP.NET services
2011-06-14 18:17:00
Mea culpa: I may owe your fingers an apology. If you’ve been using my approach for directly calling ASP.NET’s JSON-based services with jQuery, you know that specifying the correct Content-Type on your requests to them is a crucial part of coaxing JSON out of them. However, when I suggested that a Content-Type of application/json; charset=utf-8 ... You've been reading Save yourself some typing when you call ASP.NET services, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: jQuery 1.5′s AJAX rewrite and ASP.NET services: All is well Simplify calling ASP.NET AJAX services from jQuery Using jQuery to Consume ASP.NET JSON Web Services
Using jQuery 1.6 to find an array of an object?s keys
2011-06-08 19:22:00
With the confusion surrounding jQuery 1.6′s changes to .attr() and the addition of .prop(), one of my favorite new features nearly slipped under the radar. The feature I’m referring to is that $.map() now works against plain JavaScript objects in addition to arrays. $.map() has always been a useful utility method, somewhat mimicking ECMAScript 5′s ... You've been reading Using jQuery 1.6 to find an array of an object’s keys, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts: Use jQuery to extract data from HTML lists and tables Use jQuery and ASP.NET AJAX to build a client side Repeater Avoid this tricky conflict between ASP.NET AJAX and jQuery
JQuery ? Search box with default text
2010-11-14 09:15:00
Ever wanted to do a search box with a default text that automatically clears when clicked on ? Here is the code for it : JAVASCRIPT [Show Styled Code]: $("#src_txt").live(&#-034;blur", function(){ var default_value = $(this).attr("rel");- if ($(this).val() == ""){ $(this).val(default_value); } }).live("focus", function(){ var default_value = $(this).attr("rel");- if ($(this).val() == default_value){ $(this).val(""); } }); JAVASCRIPT ...
Using external templates with jQuery Templates
2010-10-05 20:15:00
Now that jQuery Templates is official and definitely will not include remote template loading, I wanted to publish a quick guide on implementing that yourself. As I mentioned previously, there?s a handy interaction between jQuery Templates? API and jQuery?s AJAX methods that makes this easier than you might expect. In this post, I?ll show you ... You've been reading Using external templates with jQuery Templates, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:A few thoughts on jQuery templating with jQuery.tmpl Use jQuery and ASP.NET AJAX to build a client side Repeater How you can force the Ajax Script Loader to use jQuery 1.4
Understanding jQuery?s impact on Microsoft and ASP.NET
2010-10-04 19:49:00
It hasn?t been easy keeping up with the twists and turns that Microsoft?s client-side frameworks and libraries have taken in the past couple years. Even today, I still hear from a surprising number of developers that don?t realize the ASP.NET Ajax Library is dead. With that in mind, I?ve been writing an article on and ... You've been reading Understanding jQuery’s impact on Microsoft and ASP.NET, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:What ASP.NET developers should know about jQuery Mastering jQuery now available at TekPub Alt.NET Podcast – jQuery in ASP.NET
6,953 reasons why I still let Google host jQuery for me
2010-09-15 16:59:00
It?s been nearly two years since I wrote about using Google?s CDN to host jQuery on your public-facing sites. In that post, I recommended it due to three primary benefits that public CDNs offer: decreased latency, increased parallelism, and improved caching. Though the post has been overwhelmingly well-received, concerns have been raised as to whether ... You've been reading 6,953 reasons why I still let Google host jQuery for me, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:3 reasons why you should let Google host jQuery for you Hear me talk jQuery and ASP.NET on the jQuery Podcast How you can force the Ajax Script Loader to use jQuery 1.4
Sponsor Flip Wall With jQuery & CSS
2010-09-10 16:12:00
Sponsor Flip Wall With jQuery & CSS, es una propuesta muy interesante, usando PHP, CSS y jQuery con la Flip jQuery plug-in nos permite crear animaciones sobre las marcas de nuestros patrocinadores agregando contenido adicional. El código resultante se puede utilizar para mostrar patrocinadores, clientes o cartera de proyectos también. Observen esta propuesta, porque es ...
Flickr Feed ? jQuery plugin
2010-09-10 15:27:00
A menudo trabajamos con clientes que mantienen cuentas en Twitter, Flickr, Youtube y otros servicios, además de su página web, y desean llevar todo ese contenido que suben a redes sociales, directamente a sus web. Con Flickr, esto es bastante fácil ya que proporcionan un simple API fácil de utilizar. Lo novedoso es que desde ...
Hear me talk jQuery and ASP.NET on the jQuery Podcast
2010-08-30 17:10:00
Last week, Ralph Whitbeck was kind enough to have me as a guest on episode #32 of the jQuery Podcast. We spoke about topics including: Research I?ve done on the public CDNs that host jQuery, and why it matters which one you choose Why you should never use a "latest version" reference to scripts on ... You've been reading Hear me talk jQuery and ASP.NET on the jQuery Podcast, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:Hear me talk about jQuery on the Polymorphic Podcast Mastering jQuery now available at TekPub Alt.NET Podcast – jQuery in ASP.NET
Don?t let jQuery?s $(document).ready() slow you down
2010-08-18 19:26:00
A couple examples of situations where jQuery's $(document).ready() may be unnecessarily slowing you down. You've been reading Don’t let jQuery’s $(document).ready() slow you down, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:$(document).ready() and pageLoad() are not the same! 3 reasons why you should let Google host jQuery for you Easily build powerful client-side AJAX paging, using jQuery
Sometimes, even jQuery can?t save you from yourself
2010-07-07 06:05:00
This post describes a cross-browser problem I had with jQuery that turned out to be my own fault, including a runthrough of debugging process and the eventual solution. You've been reading Sometimes, even jQuery can’t save you from yourself, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:Use jQuery and ASP.NET AJAX to build a client side Repeater 11 keystrokes that made my jQuery selector run 10x faster A few thoughts on jQuery templating with jQuery.tmpl
Nivo Slider ? jQuery Image Slider
2010-06-05 16:14:00
Nivo Slider, una fantástica forma de crear diapositivas / deslizante con miniaturas para nuestros proyectos online. Posee características particulares como 9 efectos de transición, se puede ajustar a nuestras necesidades, dirección y control de navegación, la versión sólo pesa 7kb, apoya la vinculación en imágenes, Teclado de navegación. Nivo Slider ha sido probado en los ...
Fancy menú CSS3
2010-06-05 15:49:00
Fancy menú se hizo popular en devthought , basado en la biblioteca Mootools. Mas tarde conocimos una versión utilizando jQuery, llamado lavalamp, el cual tambien se hizo popular por Ganesh . Esta vez, veremos cómo obtener el mismo efecto utilizando las nuevas características de CSS3. Nota: Se ve mejor en un navegador WebKit (Safari y ...
Zoom-Info ? Imágenes ricas en información
2010-05-04 17:56:00
Si han pensado en mostrar unas pocas líneas de texto sobre una imagen en sus sitios, pero no quieren renunciar al diseño actual, crear una imagen rica en información ha de ser una muy buena solución. Lo que vamos a tratar de lograr, es tener una imagen a tamaño completo donde esconderemos información adicional. Cuando ...
A few thoughts on jQuery templating with jQuery.tmpl
2010-05-03 07:57:00
I spent some quality time with Dave Reed?s latest revision of John Resig’s jQuery.tmpl plugin recently, migrating a small project from jTemplates. Since both the jQuery team and Microsoft team have requested feedback on jQuery.tmpl, I decided to write about my experience using it (as I am wont to do with these templating proposals). Overall, ... You've been reading A few thoughts on jQuery templating with jQuery.tmpl, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:A sneak peak at ASP.NET AJAX 4.0′s client-side templating Use jQuery and ASP.NET AJAX to build a client side Repeater Simplify calling ASP.NET AJAX services from jQuery
5 Steps Toward jQuery Mastery
2010-03-30 08:55:00
Five quick tips that I found valuable while learning jQuery in depth. I learned them the hard way so you don't have to! You've been reading 5 Steps Toward jQuery Mastery, originally posted at Encosia. I hope you enjoyed it, and thanks for reading. Related posts:See how I used Firebug to learn jQuery 11 keystrokes that made my jQuery selector run 10x faster Updated: See how I used Firebug to learn jQuery
Auto Numbering In Query Column
2010-01-04 17:37:00
We know how to create an Auto-number Field in a Table to generate Unique Sequence numbers automatically for the records added to the Table. We know how to create Sequence Numbers for data lines on Reports.On Reports, create a Text Box in Detail Section of the Report, write the expression =1 in the Control Source Property and change the Running Sum Property Value to Over All or Over Group. If you need sequence numbers for each Group separately, depending on the Sorting and Grouping settings on the Report, then the Over Group option must be set in the Property otherwise Over All for continuous numbers from start of the Report to the End.If you want to create Running Sum value of a Field, like Quantity or Total Price, then set the Running Sum Property value as explained above. For more details on Running Sum as well as creating Page-wise Totals on Access Reports visit the Page with the Title: MS-Access Report and Page Totals. But, Auto-numbering in Queries looks somewhat strange to as...
Mastering jQuery now available at TekPub
2009-12-16 15:52:00
If you haven?t been following the progress of Rob Conery and James Avery?s new venture, TekPub, you?ve been missing out on some great instructional videos. I especially like that they trend slightly Alt.NET, giving you more balanced information than is sometimes available from ?official? .NET screencasts. For the past few weeks, I?ve been working with James ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Mastering jQuery now available at TekPub
Emulate ASP.NET validation groups with jQuery validation
2009-11-24 18:51:00
In my most recent post, I demonstrated a workaround to allow using the jQuery validation plugin with WebForms pages. The basic idea was to trigger validation only on submissions that occurred within a single logical form, instead of catching submissions anywhere on WebForms? all-encompassing physical form. This approach worked fine for a single logical form, but ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Emulate ASP.NET validation groups with jQuery validation
Using jQuery validation with ASP.NET WebForms
2009-11-04 10:57:00
You?ve probably noticed that Jörn Zaefferer?s jQuery validation plugin has been gaining momentum in the ASP.NET community lately. Between Microsoft?s implied endorsement via ASP.NET MVC 2.0 integration and the plugin?s recent inclusion on the Microsoft AJAX CDN, adoption is only increasing. Unfortunately for those who don?t or can?t use ASP.NET MVC yet, using the validation ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Using jQuery validation with ASP.NET WebForms
Do you know about this undocumented Google CDN feature?
2009-10-12 05:26:00
By now, you probably already know that Google hosts jQuery on its AJAX APIs CDN, free of charge. As I?ve discussed here in the past, I?m a big fan of using their CDN to achieve decreased latency, increased parallelism, and better caching. If you?ve explored the AJAX APIs documentation a bit, you may know that jQuery ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Do you know about this undocumented Google CDN feature?
Updated: See how I used Firebug to learn jQuery
2009-09-21 07:44:00
It was great to see all the positive responses to the screencast I recently recorded with Craig Shoemaker on how to use Firebug?s console to learn jQuery. That being my first screencast, I really appreciate all of your support. However, you almost unanimously commented that it was too difficult to read the commands typed at the ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Updated: See how I used Firebug to learn jQuery
Peak Detection and Hold Query
2009-08-26 08:11:00
Further to my previous discussion, LINK. I have had no problem with constructing a peak-detect and hold circuit. I do have a big problem in figuring out how to switch an Op-Amp using a peak voltage that drops its voltage relative to the peak. An example would help here. I have a NiCd b
See how I used Firebug to learn jQuery
2009-08-10 17:42:00
UPDATE: We’ve recorded a higher quality version of this screencast. When I hear that someone?s having trouble learning JavaScript or jQuery, my first suggestion to them is always the same: install Firebug and experiment at the console. Whether you?re an experienced JavaScript developer or haven?t written a single line of client-side code, the interactive nature of ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.See how I used Firebug to learn jQuery
Simplify calling ASP.NET AJAX services from jQuery
2009-07-21 19:11:00
As jQuery?s popularity in the .NET community has risen over the past year, one recurring theme I?ve seen is the desire to refactor away the details of using it to call ASP.NET AJAX services. Whether through helper function or specialized jQuery plugin, I?ve seen numerous methods proposed and/or in use. Personally, the syntax never bothered me. ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Simplify calling ASP.NET AJAX services from jQuery
Improving jQuery?s JSON performance and security
2009-07-07 15:00:00
When you?re working with JSON, performance and security are often opposing, yet equally important concerns. One of these areas of contention is handling the JSON strings returned by a server. Most JavaScript libraries do a great job of abstracting away the details, but the underlying process has long been a frustrating exercise in compromise. On one ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Improving jQuery?s JSON performance and security
Never worry about ASP.NET AJAX?s .d again
2009-06-29 07:00:00
When I recently received this message from a frustrated reader: After hours and hours of slamming my head into the desk it turns out it was the darn "d" in the response. My home computer is on .NET 2.0 and my work computer is on 3.5. Jimminie Christmas! I realized that the ?.d? introduced in ASP.NET AJAX ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Never worry about ASP.NET AJAX’s .d again
SAMRAT QUERY
2009-06-24 14:15:00
WHAT IS THE DIFFERENCE BETWEEN GROUNDING AND EARTHING
Simple Image Gallery Navigation (slider) plugin in jQuery
2009-06-23 11:28:00
Hi all, I started about a year ago a personal project regarding the touristic places I have visited (and will visit) in Romania and because I had a lot of other work to do on my ex-full time job (I’m now again a freelancer) I never had time to finish it but all changed now and ...
Hear me talk about jQuery on the Polymorphic Podcast
2009-06-20 19:12:00
As a longtime listener myself, I was eager when Craig asked me to come on the Polymorphic Podcast to talk about jQuery. I?ve always enjoyed how he doesn?t shy away from talking about HTML and JavaScript, which is still too uncommon in the .NET world. With that in mind, I knew we?d be able to have ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Hear me talk about jQuery on the Polymorphic Podcast
11 keystrokes that made my jQuery selector run 10x faster
2009-06-09 20:45:00
As an ASP.NET developer working on the client-side, one problem you?ll encounter is how to reference the HTML elements that ASP.NET web controls generate. All too often, you find yourself wasting time trying to reference TextBox1, when the element is actually rendered as ctl00_panel1_wizard1_TextBox1.- Much has been written about this, including a post of my own, ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.11 keystrokes that made my jQuery selector run 10x faster
Query
2009-05-29 23:12:00
Trying to get my head round this. Lets take a 240V single phase supply powering a 60 watt light. If I take an amp-probe and clamp it round the phase conductor I will obtain the current flowing in the circuit. This said current is then flowing through the element of the light and back through the neu
Query
2009-05-28 15:28:00
I am preparing Engineering mechanics. Using Beer and johnson Handbook. Guide me to sequence of preparation
Heat Exchanger Query
2009-05-25 19:08:00
Dear All, I am working in a consultancy these days and m a fresh graduate from Mechanical. I m stuck at a place while designing Heat Exchanger. My queries are 1. Whats the criteria/standard for choosing the diameter of rear shell cover in case of Floating type (S) Exchanger. I got a feedbac
What ASP.NET developers should know about jQuery
2009-05-13 19:10:00
As much as I enjoyed attending MIX09 this year, it wasn?t a difficult decision when Karsten asked me to write an article for the MIX Online site. Reading this here, there?s a good chance the article is targeted below the amount of jQuery expertise you already have. However, it?s been brought to my attention that some ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.What ASP.NET developers should know about jQuery
How I handle JSON dates returned by ASP.NET AJAX
2009-04-27 17:22:00
The problem of how to handle dates in JSON is one of the more troublesome issues that may arise when directly calling ASP.NET AJAX web services and page methods. Unlike every other data type in the language, JavaScript offers no declarative method for expressing a Date. Consequently, embedding them within JSON requires a bit of fancy ...### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.How I handle JSON dates returned by ASP.NET AJAX
How To Creating Featured Slider in Wordpress
2009-04-22 17:03:00
Creating Featured Slider in WordPress is useful functions. With tutorial from TobaCamp Featured Slider will be easy to implemented. Just follow the tutorial and you will have nice and good looking wordpress website or blogs. Like what TobaCamp team has said. Featured Slider is considered as one of the hottest elements on a website, the trend ... Related posts:Five Reason Why Use WordPressWordPress Theme: PitrWordPress Installation on Windows with XAMPP
Query
2009-04-11 09:53:00
Can any one help to explain following query- I have read on name plate of one of the vessel Design Pressure -External- 101.325 KPAG /Full Vacuum Means vessel is design for full vacuum Inside or full vacuum out side ?
Using complex types to make calling services less? complex
2009-04-07 10:33:00
A detailed examination of how jQuery can call ASP.NET AJAX web services (or page methods) with complex types as parameters, to simplify the process of serializing and sending several fields of data at a time.### Originally posted at Encosia. If you're reading this elsewhere, come on over and see the original.Using complex types to make calling services less… complex
Query
2009-03-21 08:52:00
How can i calculate Maximum Allowable pressure for SA 106 Gr-B pipe of 18" NB and schedule 120 . for design at 100 degree C AS PER B31.3 I have some data- 18 " NB pipe OD - 18 " As per 120 Schedule Thickness - 34.92 mm. Pl. help
MCCB Query
2009-03-18 21:52:00
Is it 16A, MCCB available in ABB, Snieder make? Whether is it possible to install a 30 mA earthleakage release in MCCB, like MCB?
111621 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2012 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker