Solution: Check if multiple references are added for jquery. IE doesn't handle duplicate JavaScript references and throws such unrelated errors.
SharePoint For Fun
Tuesday, April 22, 2014
Tuesday, June 18, 2013
SharePoint Questions Set
SharePoint:
Solution:
Features:
Difference between Solutions and Featues:
Create Custom 404 page in SharePoint
Create Custom Job for sending emails daily from SharePoint
Difference between 2007 vs 2010
http://msdn.microsoft.com/en-us/sharepoint/hh850370.aspx
SharePoint Interview Questions and Answers
http://computerauthor.blogspot.com/2009/09/sharepoint-interview-questions-part-1.html
http://sharepoint.infoyen.com/sharepoint-faq/sharepoint-faq-1/
ASP.net Questions Set
Manually Creating WCF Service
OOPS
Abstraction:
Encapulation:
MISC:
http://www.wiziq.com/online-tests/26849-c-basic-test
What is HTTPHandlers
http://geekswithblogs.net//flanakin/articles/ModuleHandlerIntro.aspx
Implementing HTTPHandlers
http://www.developerfusion.com/article/4643/implementing-http-handlers-in-aspnet/
http://onlydifferencefaqs.blogspot.in/2012/08/difference-between-httphandler-and.html
Difference-between-WCF-and-Web-Services
http://www.codeproject.com/Articles/139787/What-s-the-Difference-between-WCF-and-Web-Services
WCF-Top-10-Interview-Questions
http://www.codeproject.com/Articles/426776/WCF-Top-10-Interview-Questions
Difference-between-BasicHttpBinding-and-WsHttpBinding
http://www.codeproject.com/Articles/36396/Difference-between-BasicHttpBinding-and-WsHttpBind
Difference-between- WCF 3.5 and 4.0
http://msdn.microsoft.com/en-us/library/ee354381.aspx
http://www.dotnetcurry.com/ShowArticle.aspx?ID=383
Merrill Lynch RAD using WF
http://www.wallstreetandtech.com/it-infrastructure/merrill-lynch-speeds-up-application-deve/207200852
Differences Between ASMX and WCF Services
What is HTTPHandlers
http://geekswithblogs.net//flanakin/articles/ModuleHandlerIntro.aspx
Implementing HTTPHandlers
http://www.developerfusion.com/article/4643/implementing-http-handlers-in-aspnet/
http://onlydifferencefaqs.blogspot.in/2012/08/difference-between-httphandler-and.html
Difference-between-WCF-and-Web-Services
http://www.codeproject.com/Articles/139787/What-s-the-Difference-between-WCF-and-Web-Services
WCF-Top-10-Interview-Questions
http://www.codeproject.com/Articles/426776/WCF-Top-10-Interview-Questions
Difference-between-BasicHttpBinding-and-WsHttpBinding
http://www.codeproject.com/Articles/36396/Difference-between-BasicHttpBinding-and-WsHttpBind
Difference-between- WCF 3.5 and 4.0
http://msdn.microsoft.com/en-us/library/ee354381.aspx
http://www.dotnetcurry.com/ShowArticle.aspx?ID=383
Merrill Lynch RAD using WF
http://www.wallstreetandtech.com/it-infrastructure/merrill-lynch-speeds-up-application-deve/207200852
Differences Between ASMX and WCF Services
Consideration When to Use BasicHttp and WsHttp
Create WCF services
Silverlight Questions
ASP.Net Breaking Changes
Fed Wire
Videos
LINQ
LAMBDA Understanding
Diff between Ienumerable & IEnumerator
http://stackoverflow.com/questions/619564/what-is-the-difference-between-ienumerator-and-ienumerable
AJAX
ASP.net page life cycle
http://www.google.com/url?q=http://www.codeproject.com/Articles/73728/ASP-NET-Application-and-Page-Life-Cycle&sa=U&ei=-js2UfzOE8np0gHCoYCADg&ved=0CBgQFjAA&usg=AFQjCNHfxVieKTyReIZTzTXiqIcEIoVSpQ
OOD
http://www.codeproject.com/Articles/93369/How-I-explained-OOD-to-my-wife
Design Patterns
http://www.codeproject.com/Articles/98598/How-I-explained-Design-Patterns-to-my-wife-Part-1
http://www.codeproject.com/Articles/28309/Design-pattern-FAQ-Part-1-Training#Whataredesignpatterns
http://www.codeproject.com/Articles/28309/Design-pattern-FAQ-Part-1-Training#Whataredesignpatterns
Monday, March 26, 2012
How to check internet connection in Android
First In androidmanifest.xml file give the permission of internet given below.
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
And Internet Connection code given below. This are simply create one Internetconnection() function.
private boolean InternetConnection() {
ConnectivityManager conMgr = (ConnectivityManager) getSystemService (Context.CONNECTIVITY_SERVICE);
if (conMgr.getActiveNetworkInfo() != null
&& conMgr.getActiveNetworkInfo().isAvailable()
&& conMgr.getActiveNetworkInfo().isConnected()) {
return true;
} else {
Toast.makeText(getApplicationContext(),"Please check your Internet connection, You are now seeing the cached version.",Toast.LENGTH_LONG).show();
return false;
}
}
Monday, March 19, 2012
you must have internet and access_network_state permissions in androidmanifest.xml
You need to add below 2 lines into AndroidManifest.xml file
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.company" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true"> <activity android:label="@string/app_name" android:name="BannerExample"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> </application> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> </manifest>
Subscribe to:
Posts (Atom)