Skip to main content

Posts

Showing posts from January, 2014

How to prevent multiple logins from the same user in asp.net

Preventing a User From Having Multiple Concurrent Sessions in asp.net Previously I was Explained about the  How to remove rows from GridView using jQuery in asp.net ,  Nested GridView in ASP.NET Using c# with show/hide  ,   How to Add a Locked Header Row to an ASP.NET GridView Control ,   How to remove rows from GridView using jQuery in asp.net , Popup window on button click in asp net We implemented a system for this along the following lines: Added a property to the users Profile to hold their session ID. Whenever a user logs in, store their session ID in the Profile. On any page that requires a this level of security, check to see if the session ID stored in the profile matches their session. This check could be performed in a custom AuthorizeRequest event handler, or it could be performed in a Base class that these pages derive from, and if not, redirect them to the login page. We went for the base class option as we have two levels of authentication: The user has a c

Work properly with Microsoft Team Foundation Server 2012 – Offline mode?

How to work properly with Microsoft Team Foundation Server 2012 – Offline mode? by inzeek on May 10, 2011 AS Microsoft Team Foundation Server 2010 does support offline mode, lot of developers are willing go offline mode and continue their work (Ex: Working from home, etc.) Simply offline mode means TFS 2010 goes offline (disconnect the connectivity properly between your local machine and TFS 2010 server) while your solution is already open though VS 2010 IDE. Recently, few developers complained about TFS 2010 server does not determine the changes they have done in offline mode. Yes, I agree with that point, but the issue is if you checkout files while you are in offline mode, then TFS 2010 source controls system doesn’t record or track any changes you made. To overcome this issue, you can follow below mentioned steps: First, Check Out all the necessary files you want to edit. Unbind your project properly – Offline (File – Source Control – Change S

Microsoft sql server Error:18456 login failed for user

In this bog post I will show you reasons why you might be getting  SQL Server error 18456  and show you may be able to solve it. Previously I was Explained about   Microsoft SQL Server 2008 Error:233 - Solution ,    Unable to connect SSMS, Microsoft SQL Server, Error: 53  , SQL Server 2008 R2 Setup Error - is not a valid login or you do not have permission  . Contents 18456 Error Overview SQL Server Authentication not enabled Invalid login name Invalid password Common reasons State 1 explanations Before you start : If this article doesn't not help you find the reason, solution or you solve it in another way than please let me know  so I can update the article. Remember you need sufficient permissions in order to make certain changes. 18456 Error overview When connecting to Microsoft SQL Server and trying to use usually SQL Authentication method you may get event ID  error 18456 login failed for user  you provided. See below example. This usually means that y

Microsoft SQL Server 2008 Error:233 - Solution

Error in Sql Server 2008 R2  Error : 233 - Solution  Previously I was Explained about   Unable to connect SSMS, Microsoft SQL Server, Error: 53  , SQL Server 2008 R2 Setup Error - is not a valid login or you do not have permission  . A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memeory Provoder, error: 0 - No Process is on the other end of the pipe.)Microsoft SQL server error:233 After several frustrating attempts to get this resolved, I completed the following steps to resolve the "Microsoft SQL Server 2008 R2, Error:233.   1. Log into an administrative account that has access to both the machine and sql server 2005 database 2. Open up SQL Server Management studio with "Windows Authentication" 3. Click on the security folder 4. Click on "logins" -  Sa 5. Then click on the account that is not working (Sa or any other user Names) 6.  Answer  - Make sure there is a

Walk In - Interviews For Sales Officers (Male) - Hyderabad

Walk In - Interviews - For Sales Officers (Male) - Hyderabad Skills Required :                            Master in MsOffice(Excel , PowerPoint , Word) ,                           Communication Skills ( Written & Verbal ).                         Qualification  :                                     MBA Freshers 2013 & 2014                          " Passionate to do sales and generate leads , Quick learning People " Interview Date  & Time :                             30/06/2014 to 05/07/2014 from 10.00 AM to 4.00 PM Venue Details  : SyncApps Online Ventures Pvt. Ltd H.No 8-3-318-11-4B Jayaprakash Nagar, Ameerpet, Andhra Pradesh , Hyderabad 500073 040-64 61 89 89 - 040-68 68 68 68 Support@easybus.in Land Mark : Value Mart , Near Saradhi Studios Mail Your Resume :                                 venu.r@easybus.in For more Details Visit Us :                          http://syncrooms.com , http://easybus.in

10 Essential Qualities of Highly Promotable Employees

Wouldn’t you just love to know the answer to life’s greatest mysteries? Things like: Why aren’t there any synonyms for thesaurus? Why do hot dogs come in packages of six while buns come in packages of eight? What’s the secret to getting promoted at work? As far as the first two questions go, perhaps the world will never know. But it just so happens that there is an answer for how you can make yourself promotable, and it isn’t as much of a secret as you might think. Read on for a list of 10 qualities of highly promotable employees Previously posted about  12 Habits Of Highly Ineffective People  - Over come These Habits be turn to Success People   ,   Habits You Can Adapt to Be Successful at Everything  . 1. Humility Unlike prideful people who feel like they already know everything, humble people recognize that they have more to learn, and as a result, they have much more potential for growth. They aren’t afraid to ask questions and they will take on any task they are given, bel

How to convert xml string format to Datatable in asp.net

 How to convert Xml string format to DataTable in asp.net Previous Post I was Explained about   What is ASP.NET Scaffolding  , What is sharding - Databases Sample Code : string testString = @"<?xml version=""1.0"" encoding=""UTF-8""?><root><child><subchild>.....</subchild></child></root>" ; DataSet ds = new DataSet (); StringReader stream = new StringReader (testString); ds.ReadXml(stream); DataTable dt = ds.Tables[0];

Dot Net Framework Interview Questions

 Dot Net Framework Interview Questions Previously I was Explained about   Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework 1. What is .NET Framework? .NET Framework is a complete environment that allows developers to develop, run, and deploy the following applications: Console applications Windows Forms applications Windows Presentation Foundation (WPF) applications Web applications (ASP.NET applications) Web services Windows services Service-oriented applications using Windows Communication Foundation (WCF) Workflow-enabled applications using Windows Workflow Foundation (WF) .NET Framework also enables a developer to create sharable components to be used in distributed computing architecture. NET Framework supports the object-oriented programming model for multiple languages, such as Visual Basic, Visual C#, and Visual C++. .NET Framework supports multiple programming languages in a manner that allows language interoperabilit