vwng.blogspot.com
Just do it: December 2007
http://vwng.blogspot.com/2007_12_01_archive.html
Friday, December 28, 2007. Function view detail(id) {. Create a new row with one cell in it. Var main table = document.getElementsByTagName('table')[0];. Var table row = document.getElementById('tr' id);. Var row index = table row.rowIndex;. Var new row = main table.insertRow(row index 1);. Var cell a = new row.insertCell(0);. Cell a.colSpan = "7";. Create a input box. Var textbox = document.createElement('input');. Textbox.type = 'text';. Textbox.name = 'txtRow' id;. Textbox.id = 'txtRow' id;. Usually a...
vwng.blogspot.com
Just do it: Code Injection Vulnerabilities Explained
http://vwng.blogspot.com/2008/02/code-injection-vulnerabilities.html
Friday, February 1, 2008. Code Injection Vulnerabilities Explained. There has been a sudden increase of attacks on sites that have Code Injection vulnerabilites. Code Injection is a term used when code is injected straight into a program/script from an outside source for execution at some point in time. These type of vulnerabilities may be many times worse than any other vulnerability, since the security of the website, and possibly of the server, is compromised. Then end result would have the exploited ...
vwng.blogspot.com
Just do it: April 2007
http://vwng.blogspot.com/2007_04_01_archive.html
Tuesday, April 17, 2007. Make a CA for My Own. Here is a simple way to set up a HTTPS server on Ubuntu:. 1 install Openssl and get root CA. Sudo apt-get install openssl. Setup a root CA, and make sure the password is complex enough */. Openssl genrsa -des3 2048 rootca.privatekey. Work out a self-certificate based on the root CA,change the valid time if needed. Openssl req -new -x509 -key rootca.privatekey -days 3650 -out rootca.cert. Open /etc/ssl/openssl.cnf modify the environment variable like this:.
vwng.blogspot.com
Just do it: November 2007
http://vwng.blogspot.com/2007_11_01_archive.html
Tuesday, November 20, 2007. Transfer Deprecated HTML Attributes to CSS. The type attribute was used to set the list markers on unordered and ordered lists (#ul and #ol ) and on individual list items (#li ) for example “a, b, c”, “1, 2, 3″, “i, ii, iii”, etc. Deprecated example of “type” in an ordered list element. To replicate this in CSS you must use list-style-type:. Ol { list-style-type: lower-alpha; }. Img src="images/cup.gif" width="10". Deprecated example of “border” in the image element. The flexi...
vwng.blogspot.com
Just do it: August 2007
http://vwng.blogspot.com/2007_08_01_archive.html
Tuesday, August 28, 2007. GetElementsByClassName My Eesy Edition. Function getElementsByClassName(className, tag){. Var testClass = new RegExp("( s)" className "( s $)");. Var tag = tag "*";. Var elements = (tag = "*" & document.all)? Document.all : document.getElementsByTagName(tag);. Var returnElements = [];. Var length = elements.length;. For(var i=0; i. Current = elements[i];. If(testClass.test(current.className) {. Posted by (Victor) Xi Wang. StrTag = strTag "*";. ObjContElm = objContElm document;.
vwng.blogspot.com
Just do it: XP HOME local security
http://vwng.blogspot.com/2008/09/xp-home-local-security.html
Thursday, September 4, 2008. XP HOME local security. Xp HOME edition does not have local security policy setting(gpedit.msc), here is a solution:. 1、Copy files from XP Pro (in “C: WINDOWS system32”) gpedit.msc、fde.dll、gpedit.dll、 gptext.dll、wsecedit.dll to HOME “C: WINDOWS system32”. 2、Start- run: run following command “regsvr32 fde.dll”、“regsvr32 gpedit.dll”、“regsvr32 gptext.dll”、“regsvr32 wsecedit.dll”. 4、Last step, run “gpedit.msc”, you will see the security policy console. Posted by (Victor) Xi Wang.
vwng.blogspot.com
Just do it: September 2008
http://vwng.blogspot.com/2008_09_01_archive.html
Thursday, September 4, 2008. XP HOME local security. Xp HOME edition does not have local security policy setting(gpedit.msc), here is a solution:. 1、Copy files from XP Pro (in “C: WINDOWS system32”) gpedit.msc、fde.dll、gpedit.dll、 gptext.dll、wsecedit.dll to HOME “C: WINDOWS system32”. 2、Start- run: run following command “regsvr32 fde.dll”、“regsvr32 gpedit.dll”、“regsvr32 gptext.dll”、“regsvr32 wsecedit.dll”. 4、Last step, run “gpedit.msc”, you will see the security policy console. Posted by (Victor) Xi Wang.
vwng.blogspot.com
Just do it: Make a container's border work!
http://vwng.blogspot.com/2008/02/make-containers-border-work.html
Monday, February 4, 2008. Make a container's border work! Border: 1px solid #000000;. Posted by (Victor) Xi Wang. Subscribe to: Post Comments (Atom). DMT Class Blog Collection. James Young's All in One Blog. View my complete profile.
hong-everlasting.blogspot.com
Hong's Blog: CSS pratical from last week
http://hong-everlasting.blogspot.com/2007/04/css-pratical-from-last-week.html
This is my official blog for Digital Media Technologies. Tuesday, 3 April 2007. CSS pratical from last week. Below is the link to the final page of CSS practical in last week's lecture. Subscribe to: Post Comments (Atom). This is a Flickr badge showing public photos from hoNg. Make your own badge here.
journalinau.blogspot.com
Zhe's blog: another explanation of networking
http://journalinau.blogspot.com/2007/03/another-explanation-of-networking.html
Monday, 12 March 2007. Another explanation of networking. It impressed me greatly that Tim used very unexpected way to explain networking. i never be told that the concepts of technologies relate to a scenario happens in a restaurant before. Now i can easily remember every concepts of the components of networking when i recall the ordering dish scenario. Conversation between these two guys-request and response(meaningful data). I expect an amazing journey in DMT. Thanks Tim. 9 May 2007 at 10:22 am.