Search results for query: *

  • Users: nkat
  • Content: Threads
  • Order by date
  1. nkat

    calculate data in Submit, use in Grid

    Hello! Please, consider a simple .NET CORE app. Controller using Kendo.Mvc.Extensions; using Kendo.Mvc.UI; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using TelerikAspNetCoreApp1.Models; namespace...
  2. nkat

    debugging Parallel.Foreach

    Good day, everyone! Here's this marvelous piece of code that uses Parallel.ForEach to build an Active Directory OU tree. using System.DirectoryServices; using System.Threading.Tasks; public class ADTree { DirectoryEntry rootOU = null; string rootDN = string.Empty...
  3. nkat

    how get status code of a POST (302 object moved)

    Hello! consider the following scenario an intranet website requires authentication. This is a form based authentication that returns a cookie that is used in consecutive requests to the website. When the form with a correct password is submitted via POST the site gives back this (see the...
  4. nkat

    scrape data from website with login

    Hello! My goal is to scrape some data from a webpage 192.168.1.21/app/admin/directories.asp?id=username The website that controls it needs login before querying directories. This is the problem I’m trying to solve. For that, I’ve read this post, and it addresses a lot of my questions, but does...
  5. nkat

    Parametrizing installation process via a Wizard

    Hello! There's a Windows Service written in C#. Inside its solution, there's a 'Microsoft Visual Studio Installer Project" It works well apart from one fact. To parametrize the service I need to change a line of XML file (specify a path to special file) The question is—how to create a Setup...
Back
Top Bottom