Welcome to my technical blog. On this blog I try to post detailed coding guides and tutorials. There is also general tips and information on software and technology. It is a way for me to document things I encounter in software engineering.
Thursday, February 21, 2008
Google JavaScript Trick
"javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5 ); void(0);"
without the quotes. The Google logo should start dancing. You can still use the Google search while the logo is bouncing around the page though. Like it?
Friday, February 15, 2008
Javascript Naming for CSS Float Property
elem.style.propertyName = "value";
Where the propertyName is the property name in CSS with no dashes and written in camel format. For example text-align becomes textAlign. However, for the CSS float property this is a problem because float a keyword in Javascript. Therefore instead you have to use cssFloat.
Monday, February 11, 2008
State Management with ASP .NET 2.0 - 2
2. Application State Collection
The Application collection is an object collection that maps strings to objects. The unique aspect of the Application collection is that it is a global variable such that it is shared throughout the entire ASP .NET application. The Application collection has the same life span as the ASP .NET process and dies or is cleared when the process is killed or restarted.
The use of the Application collection is to store variables that need to be retained across different pages and shared amongst different users and sessions. An example of something that might be stored in the Application collection would be a counter of some sort that is shared amongst pages and sessions.
The Application collection is used like any collection in .NET. To store something (in code behind):
int n = 0;
Application["keyID"] = n;
To retrieve a variable from the collection:
int x = (int)Application["keyID"];
Saturday, February 9, 2008
Make Google Black and White
Have you ever dreamed about seeing how the Google logo looks in black and white (or grey scale). Well, there is a chance for you. Just go to google.com and type "make google black and white" then press "I am feeling lucky." And if today is your lucky day, the Google logo will switch to black and white :). Actually it should switch anyway.
So how does that work? It turns out that there is a web site that totally mimicks the Google web site look in a signed off state. But it has a logo in black and white. More importantly, this site happens to be the first result on Google search when you search for "make google black and white." Pressing the "I am feeling lucky" button has the same effect as going to the first link in the search results. So when you press the button you are actually going a new site but since everything looks the same except for the logo, it looks like as if Google understood what you wanted and changed its logo like magic. But sorry not this time. No magic there.
Monday, February 4, 2008
Submitting a Form upon Pressing the Enter Key
It is very common on web forms that a page is desired to submit its form when a user presses the Enter key while the focus in a certain or any text box. This is typically done using JavaScript. I want to share how it's done as it can be very useful. In essence all that is done is that every time a user presses a key, a JavaScript code checks if the key pressed is the Enter key. If so it submits the form to the server, otherwise it does nothing. The following is a snippet of the code would look like:
On the JavaScript side
function enter_submit(pevent)
{
if(window.event) //Internet Explorer
{
if(myEvent.keyCode == 13) //check enter was pressed
{
document.formname.submit();
//or __doPostBack("",'');
return;
}
}
else if(pevent.which) // Netscape/Firefox/Opera
{
var pressed = pevent.which;
if(pressed == 13)
document.formname.submit();
//or __doPostBack('','');
}
}
On the HTML or ASP .NET side
<asp:Textbox ID="txtPassword" runat="server" onkeypress="javascript:enter_submit(event);/>
<input id="inPassword" type="password" onkeypress="enter_submit(event);"/>