Tuesday, March 24, 2015

How to view the image while mouse hover using JQUERY in Asp.net C#

How to view the image while mouse hover using JQUERY in Asp.net C# Step1:- Create one HTML design in the ASPX page <div id="pop1" class="popbox">    <asp:Image ID="imghover" runat="server" Width="800px" Height="400px" /> </div> <a href="#" class="popper" data-popbox="pop1" id="hrfViewImage" runat="server" visible="false">View Image</a> To assign the Image URL in code View use run at server for HTML Control Step2:- Assign the image...
Read More »

How to implement the single user for single login and single session in asp.net c#

How to implement the single user for single login and single session in asp.net c# Description: In this post I want to explain how to restrict the users to login the application with one session for one login. Example:-If one user login the application then restrict the user to login with same credentials until the session completes. Step 1:- Create these methods ///<Authour> ANNAM LOKESH </Authour> /// <summary> /// Creating the single session creation...
Read More »

How to get the list of Active Directory in the System windows c# .net

How to get the list of Active Directory in the System windows c# .net public partial class Form3 : Form     {         public Form3()         {             InitializeComponent();             Domain domain = null;             DomainController...
Read More »

How to get IP Address of Visitors Machine || Client Machine in ASP.Net

How to get IP Address of Visitors Machine || Client Machine in ASP.Net Description: -This post explains you to know how to get the client IP Address from ASP.Net c# C# string ipaddress; ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (ipaddress == "" || ipaddress == null)     ipaddress = Request.ServerVariables["REMOTE_ADDR"]; When users are behind any proxies or routers the REMOTE_ADDR returns the IP Address...
Read More »

How to create the Capture Image || Login Image authentication creation in asp.net c#

How to create the Capture Image || Login Image authentication creation in asp.net c# Step 1:- Create one asp page and name it as CaptureImage.aspx In .CS file write below code namespace IDMSUI {     public partial class CaptureImage : System.Web.UI.Page     {         protected void Page_Load(object sender, EventArgs e)         {             GetCaptureImage();        ...
Read More »