VideoStreaming in asp.net with c#

6:13 PM | Comments (0)

using System.IO;using System.IO.Compression;FileStream sourceFile;GZipStream compStream;FileStream destFile;protected void btnCompress_Click1(object sender, EventArgs e){if (File1.PostedFile != null){txtSource.Text = File1.PostedFile.FileName.ToString();}sourceFile = File.OpenRead(txtSource.Text);destFile = File.Create(txtDestination.Text);compStream = new...

Read more

Creating Controls at Runtime

6:11 PM | Comments (0)

TextBox txt1 = new TextBox();TextBox txt2 = new TextBox();txt1.Text = "This is the textbox inside the placeholder";txt2.Text = "This is the textbox...

Read more

SerialPort (RS-232 Serial COM Port) in C# .NET for MIFARE

12:48 PM | Comments (0)

This article is about communicating through the PC's Serial COM RS-232 port using Microsoft .NET 2.0 or later by using the System.IO.Ports.SerialPort...

Read more

Data loading from SQL Server database at runtime

12:41 PM | Comments (0)

Firstly Add DataList Control in Design View.Then Change the html code of Datalist as follows:Source Code:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using...

Read more

Windows Workflow Foundation

12:30 PM | Comments (0)

Workflow means performing any task in order. Today, each application is based on workflow approachand involves some processes to be executed. While...

Read more

SqlServer Database Connection in asp.net with C#

12:21 PM | Comments (0)

Microsoft SQL Server is a relational database management system (RDBMS) produced by Microsoft. Its primary query language is Transact-SQL, an implementation of the...

Read more

Serial Communication with MSComm Control in windows application

12:07 PM | Comments (0)

Add Reference for Serial Communication:Add MSComm Control For Serial Communication:Serial Communication Form Design:Source Code For Serial Communication:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using...

Read more