Do you want free good IPhone apps? If you have an IPhone then you won't miss these website. These website are offering IPhone Apps, free IPhone games every day. list of website that offer free IPhone apps: http://www.freeappaday.com http://www.freegameoftheday.com/   continue reading »
If you go to "http://sg.yahoo.com/?p=us" with Firefox 3.6 which is the latest version, you will see the following message: Why miss out? To see all the new Yahoo! home page has to offer, please upgrade to a more recent browser. Supported browsers include: Internet Explorer 7 optimized by Yahoo! ... continue reading »
This DateDiff function is used to calculate the date difference in months between 2 date. How to use the DateDiff function: var diff = DateDiff(fromDate, toDate) document.write(diff.Years + ' years ' + diff.Months + ' months ' + diff.Days + ' days'); Source code: var monthDay = new Array(31, -1, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); f... continue reading »
Javascript function used to format number in currency format, for example: format 1000.25 as $1,000.25 function formatCurrency(num) {     num = num.toString().replace(/\$|\,/g,'');     if(isNaN(num)) num = "0";     sign = (num == (num = Math.abs(num)));     ... continue reading »
My IIS suddenly does work with asp.net today, It shows me "Server Application Unavailable Error". I have tried "<WinDir>\Microsoft.NET\Framework\<Ver>\aspnet_regiis.exe -i" and "regsvr32 "<WinDir>\Microsoft.NET\Framework\<Ver>\aspnet_isapi.dll" but it does not work. After google a bit, I found it maybe user sercurity is... continue reading »
Using JavaScript to automatically adjust the height of iFrames on your page(s) This javascript was tested on IE and FF, It works fine. 1. Html Code for IFrame <iframe id="frameContent" name="frameContent" onload="return IframeOnload('frameContent');" class="adm_iframe" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></if... continue reading »
How to fix GridView's Header row while scrolling? I googled a lot, find some are using expression wich only work for IE and the performance is bad. Some are using TBody scroll, which also does not work well in all browsers. Also I found a JQuery plugin which is working very well in their demo page, but does not work for my case.  Below i... continue reading »
1. System.Web.Script. Serialization. JavaScriptObjectDeserializer. DeserializePrimitiveObject After google a while, and find a lot of same errors in DNN forum without a solution. and for my case this is only happened to FF old versions. UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MRA 4.6 (build 01425)) After I up... continue reading »
min-width does not work in well IE, even with IE7 and set DOCTYPE to strict. I did not get it work. Also I donot want to use expression due to its performance. It will kill your brower. After google I found a better solution, it using pure div + css. the link is "How to Use CSS to Solve min-width Problems in Internet Explorer". It works find w... continue reading »
How to call server function using JavaScript, or How to trigger button's click event by using JavaScript. For example: You have a linkbutton in your page, and the linkbutton's click event will do something. <asp:LinkButton ID="lbtnGetDetails" runat="server" style="display:'none';" OnClick="lbtnGetDetails_Clicked" /> protected void lbtnGetDe... continue reading »
Page 1 of 3First   Previous   [1]  2  3  Next   Last   
Subscribe
Rss Feed Email Follow Us on Twitter
Search