|
Wednesday, December 31, 2008
Thursday, April 3, 2008
SOA Links
Learn About Service Oriented Architecture (SOA) SOA on .NET Introduction to Service Oriented Architecture (SOA) |
Posted by Prakash at 2:02 PM 1 comments
Thursday, March 27, 2008
Paypal integration in ASP.net Links
http://www.spiderweblogic.com/Paypal-Integration-Code.aspx http://www.west-wind.com/presentations/PayPalIntegration/PayPalIntegration.asp https://www.paypal.com/IntegrationCenter/ic_sdk-resource.html |
Posted by Prakash at 3:47 PM 0 comments
3-Tier Architecture links
Some of links for understanding 3-tier architecture in ASP.net http://www.c-sharpcorner.com/UploadFile/paulabraham/Building3TierAppPA11282005053625AM/Building3TierAppPA.aspx -- -------------------------------------------------------------- "A successful career will no longer be about promotion. It will be about mastery." — Michael Hammer -------------------------------------------------------------- |
Posted by Prakash at 3:36 PM 0 comments
Wednesday, March 19, 2008
Ways to Pass Data Between Webforms
1- Query String 2- Cookies 3- Session variables 4- Cross Page Posting 5- Submit form 6- Server.Transfer or Server.Execute |
Posted by Prakash at 6:26 PM 0 comments
Wednesday, March 5, 2008
Thread Programming
Thread Programming : I developed the thread for reading from Network : int ThreadProc() if I put the above code, I am getting CPU time as almost 100%.
Technically they call it as Busy waiting or Spinning. busy waiting or spinning is a technique in which a process repeatedly checks to see if a condition is true, Alternatives to busy waiting: Busy waiting itself can be made much less wasteful by using a "delay" function found on most operating systems. When busy waits are appropriate : For Some important Operations, we can set the ThreadPriority to Highest.This will improves the execution speed. For Windows programming, we can do the following: ThreadProc() ReadFromNetwork(); }
|
Posted by Sundar at 5:22 PM 0 comments
Wednesday, February 27, 2008
Top 10 Best Practices for Production ASP.NET Applications
http://daptivate.com/archive/2008/02/12/top-10-best-practices-for-production-asp-net-applications.aspx |
Posted by Prakash at 3:14 PM 0 comments
Monday, February 4, 2008
Find Tables associated with the corresponding Field name (Oracle)
The following query is used to find the tables associated with corresponding field name |
Posted by Prakash at 12:08 PM 0 comments
Friday, February 1, 2008
READ-VERY USEFUL- A chat with Dr.Devi Shetty, Narayana Hrudayalaya (Heart Specialist) Bangalore
-- Regards, Rajesh Prabhu. R "There is no future in any job. The future lies in the man who holds the job." - George Crane "A busy man has time for everything and a lazy man has time for nothing." |
Posted by Rajesh Prabhu. R at 3:15 PM 0 comments
Tuesday, January 22, 2008
Get country information from IP Address
In many of the blogs and websites we can find the country information about the user who browse the page. This information is very helpful to get the statistical report of the site. For the fast few days, I was very eager to find the way to implement the same in my web applications too. Today I came across the solution from the following sites, http://www.developerfusion.co.uk/show/4549/1/ - Extracting the Country from the IP Address http://www.expertsrt.com/articles/Rod/city_country_IP.php - Geo-Coding IP Addresses - (API from http://www.hostip.info/ ) |
Posted by Prakash at 10:14 AM 0 comments