.Net Logics
Pages
(Move to ...)
Home
About Us
▼
Monday, 12 July 2021
Show and Hide password using JavaScript and CSS
›
Source Code:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="hideandshowpassword.aspx.cs" Inh...
How to Do Case Sensitive String Match in SQL server
›
CREATE PROCEDURE [dbo].[tblUserSelect_Authenticate] @Username nvarchar(50), @Password nvarchar(50) AS BEGIN SELECT * FROM tblUser WHERE Us...
Tuesday, 2 March 2021
How to Enable and disable Textbox control using jquery
›
for Disable $('[id*=controlid]').removeAttr("disabled"); for Enable ('[id*=controlid]').attr("disabled"...
How to clear Selected Dropdown Using Jquery
›
$('[id*=gridviewid]').find($("[id*=dropdownid] option:selected")).removeAttr("selected");
Tuesday, 4 February 2014
An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key
›
Dim employeehierarchy = db.EmployeeHierarchies.Where(Function(m) m.EmployeeHierarchyId = employeehierarchydb.EmployeeHierarchyId).FirstOrDe...
Wednesday, 22 January 2014
How to set path and domain for a cookie?
›
CookieName.Path = "/Articles/"; CookieName.Domain = "www.dotnetfunda.com";
Refresh or re-load the Asp.net page automatically
›
<meta http-equiv="refresh" content="5000">
›
Home
View web version