Posts

Showing posts from April, 2016

Login failed for user IIS APPPOOL\DefaultAppPool

Run This Script :  CREATE LOGIN [IIS APPPOOL\DefaultAppPool] FROM WINDOWS GO --USE Table Name GO CREATE USER [IIS APPPOOL\DefaultAppPool] FOR LOGIN [IIS APPPOOL\DefaultAppPool] GO EXEC sp_addrolemember 'db_datareader', 'IIS APPPOOL\DefaultAppPool' GO EXEC sp_addrolemember 'db_datawriter', 'IIS APPPOOL\DefaultAppPool' GO

Check or unchecked parent checkboxes and child checkboxes in nested ul li

 I generated menulist using c#. Html : <div style= "border: solid 1px #e5e5e5; padding: 10px; background-color: #FAFAFA; width: 100%; >                 <label>                     <input type=" checkbox " class=" checkbox-inline " id=" select_all "> Select All                 </label>                 <div class=" treeview ">                     @if (Model != null && Model.Count() > 0)                     {                         <ul>                             @GetTreeView(Model, (int) Model.FirstOrDefault().ParentMenuId)     ...