Home » Archive by category ".NET 4.0" (Page 15)

Archive for the '.NET 4.0' Category

Link to network files

Ever wanted to access network files from your webpage? Here is how to create the link: <a target=”_blank” href=”file:///D:/MyCompanyShare/MyDoc.docx”>View</a>

VB.NET – Limited user (checkbox) selection

I found this script very helpful while designing surveys for my organization. This post applies to: – MS SQL server 2005+ – VB.NET – VS2010 – .NET 4.0 Framework Javascript code <asp:content ID=”Content1″ ContentPlaceHolderID=”HeadContent” Runat=”Server”> <script type=”text/javascript” language=”javascript”> function CheckCheck() { var chkBoxList = document.getElementById(‘< %=CheckBoxList1.ClientID %>’); var chkBoxCount = chkBoxList.getElementsByTagName(“input”); var btn = document.getElementById(‘< […]