Posts

Detecting Multiple users logon to website

Detecting Multiple users logon to website: http://forums.asp.net/p/920214/1056166.aspx#1056166 Thank You.

How to get Client's Location using IPAddress

You can consume free Web Service, which can give IP Address Location Details. http://www.aspsnippets.com/post/2009/04/12/Find-Visitors-Geographic-Location-using-IP-Address-in-ASPNet.aspx The Following function returns Location Details as DataTable: private DataTable GetLocation( string ipaddress) { //Create a WebRequest WebRequest rssReq = WebRequest .Create( "http://freegeoip.appspot.com/xml/" + ipaddress); //Create a Proxy WebProxy px = new WebProxy ( "http://freegeoip.appspot.com/xml/" + ipaddress, true ); //Assign the proxy to the WebRequest rssReq.Proxy = px; //Set the timeout in Seconds for the WebRequest rssReq.Timeout = 2000; try { //Get the WebResponse WebResponse rep = rssReq.GetResponse(); //Read the Response in a XMLTextReader XmlTextReader xtr = new XmlTextReader (rep.Get...

Sharepoint BDC/Workflows

Here Sahil puts all BDC features in one web page. http://blah.winsmarts.com/2007-4-SharePoint_2007__BDC_-_The_Business_Data_Catalog.aspx I prefer to generate the XML Goo using the BDC Meta Data Manager tool. BDC Meata Data Manager: http://www.lightningtools.com/bdc-meta-man/default.aspx Step by Step Tutorial. Creating Workflows for Windows Sharepoint Services and MOSS2007 http://sergeluca.spaces.live.com/blog/cns!E8A06D5F2F585013!859.entry Thank you.

.Net/Sharepoint Faqs

Good Blog for .Net/SharePoint FAQS: http://chanderr.blogspot.com/2008_02_01_archive.html

CSS Tutorial on MSDN

Good Tutorial on CSS: http://msdn.microsoft.com/en-us/library/ms530301(VS.85).aspx

Flex vs Sliverlight ... Which one is good?

Good article on Flex vs Silverlight .. http://www.smashingmagazine.com/2009/05/09/flash-vs-silverlight-what-suits-your-needs-best/

Reset Identity

Identity get reset to Zero dbcc checkident (mytable, reseed, 0)