teqilite-techtips.blogspot.com
Teq Tips: April 2010
http://teqilite-techtips.blogspot.com/2010_04_01_archive.html
Monday, April 19, 2010. Cross-browser set innerText of an element. SetInnerText(elem, text) {. Dummy just to create a text node. ensures no other html exists inside but only text. ElemfirstChild.nodeValue = text;. Thursday, April 8, 2010. FTP PASV (passive) mode. Ftp clients tell us to switch to PASV mode if you are behind firewall. Why so? The answer lies in the way FTP protocol works between client and server. There are 2 channels created between client and server: 1 for commands and 2nd for data.
teqilite-techtips.blogspot.com
Teq Tips: javascript break in browser debugger
http://teqilite-techtips.blogspot.com/2012/02/javascript-break-in-browser-debugger_25.html
Saturday, February 25, 2012. Javascript break in browser debugger. While doing web (html js) development, sometimes it's tedious to open your javascript code and put breakpoint in browser debugger to debug the code. This becomes even more difficult when you have to debug the code that gets executed on start up. Here is an easy solution:. Statement in your javascript code where you want to break. e.g. Some more code here. Launch browser debugger (F12). Navigate to your web application. JSON Net - codeplex.
teqilite-techtips.blogspot.com
Teq Tips: xml dom - create element with namespace (cross browser)
http://teqilite-techtips.blogspot.com/2010/06/xml-dom-create-element-with-namespace.html
Wednesday, June 23, 2010. Xml dom - create element with namespace (cross browser). XmlDoc; / / some code to load and initialize xmlDoc. Create an element 'book', with prefix 'px' and namespace 'http:/ bookshop.com/schema'. XmlDoc.createElementNS) { / for other browsers than ie. Bookelement = xmlDoc.createElementNS( 'px:book'. Bookelement = xmlDoc.createNode(1, 'px:book'. Will create book element:. Subscribe to: Post Comments (Atom). Net Resource Translator - codeplex. Translation API - codeplex.
teqilite-techtips.blogspot.com
Teq Tips: Sleep or Wait in windows batch script
http://teqilite-techtips.blogspot.com/2011/06/sleep-or-wait-in-windows-batch-script.html
Thursday, June 9, 2011. Sleep or Wait in windows batch script. Ping 127.0.0.1 -n number of seconds 1. For example, to sleep for 5 seconds. Ping 127.0.0.1 -n 6. Subscribe to: Post Comments (Atom). Net Resource Translator - codeplex. Translation API - codeplex. JSON Net - codeplex. Just Another Teq Blog. Sleep or Wait in windows batch script.
teqilite-techtips.blogspot.com
Teq Tips: June 2011
http://teqilite-techtips.blogspot.com/2011_06_01_archive.html
Thursday, June 9, 2011. Sleep or Wait in windows batch script. Ping 127.0.0.1 -n number of seconds 1. For example, to sleep for 5 seconds. Ping 127.0.0.1 -n 6. Subscribe to: Posts (Atom). Net Resource Translator - codeplex. Translation API - codeplex. JSON Net - codeplex. Just Another Teq Blog. Sleep or Wait in windows batch script.
teqilite-techtips.blogspot.com
Teq Tips: June 2010
http://teqilite-techtips.blogspot.com/2010_06_01_archive.html
Wednesday, June 23, 2010. Xml dom - create element with namespace (cross browser). XmlDoc; / / some code to load and initialize xmlDoc. Create an element 'book', with prefix 'px' and namespace 'http:/ bookshop.com/schema'. XmlDoc.createElementNS) { / for other browsers than ie. Bookelement = xmlDoc.createElementNS( 'px:book'. Bookelement = xmlDoc.createNode(1, 'px:book'. Will create book element:. Subscribe to: Posts (Atom). Net Resource Translator - codeplex. Translation API - codeplex.
teqilite-techtips.blogspot.com
Teq Tips: cross-browser set innerText of an element
http://teqilite-techtips.blogspot.com/2010/04/cross-browser-set-innertext-of-element.html
Monday, April 19, 2010. Cross-browser set innerText of an element. SetInnerText(elem, text) {. Dummy just to create a text node. ensures no other html exists inside but only text. ElemfirstChild.nodeValue = text;. Subscribe to: Post Comments (Atom). Net Resource Translator - codeplex. Translation API - codeplex. JSON Net - codeplex. Just Another Teq Blog. Cross-browser set innerText of an element. FTP PASV (passive) mode.
teqilite-techtips.blogspot.com
Teq Tips: July 2010
http://teqilite-techtips.blogspot.com/2010_07_01_archive.html
Sunday, July 25, 2010. AspNet concurrent requests from same session. You could run into a situation where you need to make multiple server requests from same browser page (or rather session). We would expect the requests to be served in parallel but they rather go sequential. Behavior of session-enabled requests handling by asp.net is important to be known to handle this case. Session State is read-write for pages by default. Labels: asp.net session. Subscribe to: Posts (Atom). Translation API - codeplex.
teqilite-techtips.blogspot.com
Teq Tips: FTP PASV (passive) mode
http://teqilite-techtips.blogspot.com/2010/04/ftp-pasv-passive-mode.html
Thursday, April 8, 2010. FTP PASV (passive) mode. Ftp clients tell us to switch to PASV mode if you are behind firewall. Why so? The answer lies in the way FTP protocol works between client and server. There are 2 channels created between client and server: 1 for commands and 2nd for data. Let's take this example:. In normal mode, client starts listening on a port (act as server). And tells the server its ip and the port. Now server connects to client at the specified port and sends file.