ASP.Net - Color

Almost all web controls in an asp.net allow you to specify colors. Font colors, background colors, foreground colors. Many controls give you lots of properties to specify colors. Fortunately, they all use the same color coding schemes.

Read More

Hexo - Escape Characters

Sometimes when you are creating content in hexo pages, some of the characters you use is intercepted by hexo and not displayed. Sometimes that stuff that is not displayed is captured by the Hexo processor, and will throw error messages. You get around this using escape characters.

Read More

ASP.Net - Ajax - Sample

Ajax was a technology added to ASP.Net Web Pages. Basicially it allowed you to add Javascript to your web page that would make a call to your server, to send and or retrieve data, without causing the web page to perform a postback.

Read More

ASP.Net - Ajax

Ajax was an attempt to reduce the number of full round trips of a webpage going back to the server. It did this by giving you controls which were containerized enough such that the container and it’s contents would do the postback to the server.

Read More