Running ASP.NET securely

This blog article tells the story and how to secure the ASP.NET in shared hosting environment or for matter those want to restricted ASP.NET for some good reason
http://blogs.msdn.com/jamesche/archive/2007/09/30/running-asp-net-in-a-shared-hosting-environment.aspx
 Hope it helps

Interesting Bug in Excel 2007

Surfing around internet found a interested bug listed here
 http://www.physorg.com/news110200561.html
It says
In a blog post, Microsoft employee David Gainer said that when computer users tried to get Excel 2007 to multiply some pairs of numbers and the result was 65,535, Excel would incorrectly display 100,000 as the answer.
Gainer said Excel makes mistakes multiplying 77.1 by 850, [...]

Creating Menu at runtime using Flash 8/ActionScript 2.0

You can create menu in your flash application using the following code, however, you need to note one thing that you need to import
mx.controls.*;
mx.data.binding.*; (if you need to create Menu using databinding)
here is the code
var mm:Menu = Menu.createMenu(Me);
mm.addMenuItem({label:”All”});
if (aIndustry.length > 0 ) {
aIndustry.sort();
for (var i=0;i
if (aIndustry[i] != “”) {
mm.addMenuItem({label:aIndustry[i]});
}
}
}
mm.swapDepths(mergerbg_sp);
if (_global.styles.Menu == undefined) {
_global.styles.Menu = new [...]

Creating popup Window using Flash

Recently making a Flash in which I need a user input in a popup window to complete user action. For this I need to ask user some more value. Hence I use this code to show user another modal window.
 var nw = PopUpManager.createPopUp(_root,mx.containers.Window,true,{_width:150,_height:110,_x:((Stage.width-150)/2),_y:((Stage.height-125)/2)});
 nw.title = “Choose Industry”;
 nw.createClassObject(mx.controls.ComboBox, “cb”, nw.getNextHighestDepth(), {_x:25, _y:40});
 nw.cb.addItem(“All”);
 if (aIndustry.length > 0 ) {
  aIndustry.sort();
  for [...]

Using XML File with Flash in better way

This is just a bookmark for now to following great article
http://www.flash-creations.com/notes/dynamic_xml.php
Will explain this some day.