Skip to main content

Home/ Coders/ Group items tagged .Net

Rss Feed Group items tagged

Hostforlife Hosting

What can Developers do with Visual Studio 2015 and .NET 4.6? - - 1 views

  •  
    Let's take a look at all the new stuff that developers now have the freedom to do with Visual Studio 2015 and .NET 4.6.
Joel Bennett

Drag and Drop Web Parts - 0 views

  •  
    Drag and drop ASP.NET 2.0 Web Parts in Firefox and Safari with ASP.NET AJAX The beta 2 release of the asp.net ajax library brings drag and drop support for ASP.NET 2.0 Web Parts in both Safari and Firefox. DND support has been around for Firefox since the Atlas March CTP. However, it was accidentally left out of the beta 1 release of asp.net ajax. Now it's back with additional support for Safari.
  •  
    Geniuzz.com es una pequeña sitios de trabajo. Este sitio está dedicado a todos los españoles están buscando trabajadores con un precio muy bajo. Si usted contrata a un trabajador de aquí. Te garantizo que es muy satisfactorio. Si eres un webmaster o BPA jugadores que necesitan ayuda. Acaba de llegar al mercado muy amable. Y yo también le ayudará. Por favor visite mi puesto aquí https://www.facebook.com/pages/Geniuzzcom/525081180900419
Adildi ldinlio

ASP.NET Solutions - 23 Case Studies|free ebooks download - 0 views

  •  
    ASP.NET Solutions - 23 Case Studies free download at the best library for free asp.net ebooks download.
Joel Bennett

Deriving from WebClient to handle persisting cookies for login - 0 views

  • Then just use the ExWebClient class to make your requests;
  • Public Class CookieWebClient : Inherits WebClient ' overridden to add cookie headers to http requests. Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest Dim request As WebRequest = MyBase.GetWebRequest(address) If TypeOf request Is HttpWebRequest Then DirectCast(request, HttpWebRequest).CookieContainer = _cookies End If Return request End Function ' overridden to save cookies to the container for http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function ' overridden to save cookies to the container for async http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest, ByVal result As System.IAsyncResult) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request, result) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function Private Shared _cookies As CookieContainer = New CookieContainer End Class
Joel Bennett

altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Pa... - 0 views

  • Provide a hook for other view engines from MonoRail, etc
  • The default URL scheme will look something like this: /<RouteName>/<Action>/<Param1>/<Param2>
  • MonoRail is more than just the MVC part.  I wouldn't be surprised if MonoRail were refactored to take advantage of the ASP.NET MVC HttpHandler just as a means to reduce the codebase a bit. 
  •  
    A quick review of the earliest Microsoft announcement of their MVC framework for ASP.Net
Joel Bennett

.NET 4.0 - System.Shell.CommandLine Parsing (Part 1) - B# .Net Blog - 0 views

  •  
    .Net finally gets built-in command-line parsing in 4.0 -- and it matches PowerShell's command-line syntax power!
Joel Bennett

ASP.NET MVC 2 Roadmap - 0 views

  •  
    Asp.Net MVC is starting to look a bit like WPF ;-) aren't these DataTemplates? "Templated Helpers - allow you to automatically associate edit and display elements with data types. For example, a date picker UI element can be automatically rendered every time data of type System.DateTime is used. This is similar to Field Templates in ASP.NET Dynamic Data."
saklanivijay

Free ASP.NET | Sql Server | Wordpress | Tutorials | Tips - 0 views

  •  
    Move items from one listbox to another listbox and vice versa in asp.net
  •  
    Move items from one listbox to another listbox and vice versa in asp.net
htmlslicemate.com

Say Hello to PowerShell - 0 views

  •  
    PowerShell is Microsoft's task automation framework, consisting of a command-line shell, an integrated scripting environment (ISE), a scripting language built on .NET Framework, an API allowing you to host PowerShell in your .NET applications, and it is a distributed automation platform. PowerShell provides full access to COM and WMI, enabling you to perform tasks on both local and remote Windows systems. PowerShell is a new breed platform for automation, in that it solves administration and adaptability challenges by seamlessly integrating the .NET Framework. It's good for developers, administrators, testers and more. Based on .NET, the tool drives down costs, while providing developers and administrators a simple and enterprise-ready way to automate, measure and improve all of their processes.
Joel Bennett

Svn.NET - .Net bindings for SVN - 0 views

  • This is a project to build reliable .NET bindings for the Subversion version-control system libraries. This is a continuation of the SubversionSharp library initially created by Softec and released under the LGPL.
  •  
    Looks like a pretty good effort to create a .Net binding which would let you easily do SVN apps in .Net
Joel Bennett

Write Shell Extensions with C# - Dino Esposito - 0 views

  •  
    This article is part of "Manage With the Windows Shell" on the Enterprise .NET Community (TheServerSide.Net) ... and it's a great article on how to write Shell Extensions etc in C#
Joel Bennett

oauth-dot-net - Google Code - 0 views

  •  
    OAuth.net is a .net library which provides full OAuth consumer and provider support. The library facilitates secure API authentication in a simple and standard method for desktop and web applications.
Joel Bennett

Crack.NET - Josh Smith on WPF - 0 views

  •  
    Crack.NET is a runtime debugging and scripting tool I made that gives you access to the internals of any .NET desktop application running on your computer.
Joel Bennett

Syntax Highlighter - Wilco Bauwer - Toolbox - 0 views

  •  
    An extensible syntax highlighter for .net which includes an Asp.Net server control
Joel Bennett

Textile.NET - CodePlex - 0 views

  •  
    "Textile.NET is, surprisingly, a textile formatter for .NET projects. Textile is a "human web text generator" (http://www.textism.com/tools/textile/) that is useful for rapid web writings such as Wiki syntax or blog articles"
Joel Bennett

Windows API Code Pack for .NET Framework - MSDN Code Gallery - 0 views

  •  
    The Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access new Windows 7 features (and some related Windows Vista features) from managed code. These features are not available to developers today in the .NET Framework.
Wicked Tunez

C#/.NET Little Wonders: A Redux - 0 views

  •  
    C#/.Net little wonders
Rodolfo Arce

Edit, Compile and Debug .NET on Linux using VS Code - RHD Blog - 0 views

  •  
    Introducción a compilar y debuggear con .Net Core en Linux con VS Code
Imran Abdul Ghani

Performing CRUD operations using ASP.NET Web API - Part 1 - 0 views

  •  
    ASP.NET Web API is a framework that simplifies the creation of HTTP services. We can build loosely coupled services as Web API follows REST architecture. Another advantage of using HTTP services is that I can be consumed by a wide range of clients.
trimantra

Asp.net Application Development Company - 0 views

  •  
    Trimantra have an expert team of Dedicated Dotnet developer who Provides the best Dotnet solutions like Dot net Application Development,Custom Software Development,Social Media Application,Inventory Management System etc.Please feel free to contact us if you are looking to hire Dotnet expert developer or seeking any kind of Dotnet development.
  •  
    Trimantra have an expert team of Dedicated Dotnet developer who Provides the best Dotnet solutions like Dot net Application Development,Custom Software Development,Social Media Application,Inventory Management System etc.Please feel free to contact us if you are looking to hire Dotnet expert developer or seeking any kind of Dotnet development.
‹ Previous 21 - 40 of 905 Next › Last »
Showing 20 items per page