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
Posted on September 30th, 2007 by Sumit Gupta
Filed under: .NET, ASP.NET, Bookmarked, Links | No Comments »
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, [...]
Posted on September 28th, 2007 by Sumit Gupta
Filed under: Other | No Comments »
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 [...]
Posted on September 18th, 2007 by Sumit Gupta
Filed under: Flash, Programming | No Comments »
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 [...]
Posted on September 18th, 2007 by Sumit Gupta
Filed under: Flash, Programming | No Comments »
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.
Posted on September 3rd, 2007 by Sumit Gupta
Filed under: Bookmarked, Flash, Links | No Comments »