HTTP File Upload without User Interaction using .NET
Måned: november 2010
Webdevelopment
HTTP File Download Without User Interaction Using .NET
by Bo Jensen •
HTTP File Download Without User Interaction Using .NET
DotNET
How to get a client's ip address with ASP.NET
by Bo Jensen •
http://bytes.com/topic/asp-classic/answers/439176-how-get-clients-ip-address-asp-net
DotNET
Ping an IP address with C#
by Bo Jensen •
1: Ping p = new System.Net.NetworkInformation.Ping(); 2: PingReply r; 3: 4: String s = "10.10.10.10"; //Replace input from your text box for IP address here 5: 6: r = p.Send(s); 7: 8: Response.Buffer = false; 9: 10: if (r.Status == IPStatus.Success) 11: { 12: 13: lblpingstatus.Text = "Ping to " + s.ToString() + "[" +…
DotNET
How to ping an IP address from vb.net
by Bo Jensen •
http://www.eggheadcafe.com/software/aspnet/33118839/ping-an-ip-address.aspx or 1: Imports System.Net 2: Imports System.Net.NetworkInformation 3: Imports System.Text 4: 5: Partial Public Class _Default : Inherits System.Web.UI.Page 6: 7: Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) 8: 9: End Sub 10: 11: Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmit.Click 12: Try 13: lblStatus.Text =…
Design & Layout, Accessibillity, Webdevelopment
Full-Featured ASP.NET Modal Window Server Control – CodeProject
by Bo Jensen •
Full-Featured ASP.NET Modal Window Server Control – CodeProject
Microsoft SQL Server, SQL Analysis Services
Walkthrough: Scheduling Administrative Tasks
by Bo Jensen •
Walkthrough: Scheduling Administrative Tasks
Microsoft SQL Server, SQL Analysis Services
How to: Batch Process Analysis Services Objects
by Bo Jensen •
How to: Batch Process Analysis Services Objects
Microsoft SQL Server, SQL Analysis Services
How to: Create an Analysis Services Job Step (SQL Server Management Studio)
by Bo Jensen •
How to: Create an Analysis Services Job Step (SQL Server Management Studio)
Design & Layout, Accessibillity, Webdevelopment
Useful jQuery Plugins to Enhance HTML Tables – Noupe Design Blog
by Bo Jensen •
Useful jQuery Plugins to Enhance HTML Tables – Noupe Design Blog
DotNET, Webdevelopment
Importing CSV Data and saving it in database – CodeProject
by Bo Jensen •
Importing CSV Data and saving it in database – CodeProject
DotNET, Webdevelopment
A Simplified SQL-CSV Import/Export Functionality – CodeProject
by Bo Jensen •
A Simplified SQL-CSV Import/Export Functionality – CodeProject
Webdevelopment, DotNET
Creating PDF Documents in ASP.NET – CodeProject
by Bo Jensen •
Creating PDF Documents in ASP.NET – CodeProject
DotNET, Webdevelopment
Base Page and User Control Classes: ASP Alliance
by Bo Jensen •
Base Page and User Control Classes: ASP Alliance
DotNET, Webdevelopment
Using Silverlight TreeView to Display BI Dimension – CodeProject
by Bo Jensen •
Using Silverlight TreeView to Display BI Dimension – CodeProject
DotNET, Webdevelopment
Replacing ASP.NET "Base Pages" with a PageAdapter: ASP Alliance
by Bo Jensen •
Replacing ASP.NET "Base Pages" with a PageAdapter: ASP Alliance
Microsoft SQL Server
How to Execute and Monitor an Agent Job Using T-SQL in SQL Server 2005/2008 | InterWorks, Inc.
by Bo Jensen •
In SQL Server 2005 and 2008 it’s possible to start an agent job with T-SQL syntax. This is frequently useful. For example, you may have a job that you’d like to have an outside application invoke. Jobs can also be used to execute SSIS packages. Using T-SQL to execute a job that runs an SSIS…
