Tuesday, April 17, 2012

Sen bulk SMS via C# using Way2Sms / 160by2 accounts and more

In the previous post we can send single sms. But now it was updated to bulk sms and sms can be repeated.

as shown in the figure. and supports all the providers shown in the image.



Sunday, April 15, 2012

Insert and Retrieve data from database using WCF Service in Asp / WinForms


Insert and Retrieve data from database using WCF Service in Asp.net || Beginner WCF Example to insert data into Database in Asp.net or Windows Forms.

To insert data into database using WCF service in asp.net, we have to do the following 3 steps as stated below:

1.      Create Database Table.
2.      Create one WCF service / Website (here website was created by me).
3.      Create Client Application (web / windows).

Create Database and One Table:
1.      Database name as wcfdb
2.      Database table as empinfo

create database wcfdb
create table empinfo
(
      empno int,
      ename varchar(150),
      sal float,
      deptno int
)

Saturday, April 14, 2012

How to create table in SQL Server with primaryKey and autoIncrement

Syntax to create primary key

create table tablename
(
     "Column 1" "data_type_for_column1" primary key,
     "Column 2" "data_type_for_column2"
)

Example :-

create table userinfo
(
   sno int primary key identity(1,1) ,
   firstname varchar(50),
   lastname varchar(50),
   designation varchar(50),
   sal float
)

Sunday, April 8, 2012

send sms using way2sms / 160by2 Desktop Application using C#

Hi this is the application to send SMS from PC to Mobile through Way2sms / 160by2 accounts.
I hope this will help you with out opening browser.

Note :- To run this application u need .net framework 4.0
I thought to do it in .net 3.5 but to run in 3.5 environment u need to down 250mb file but 4.0 is very less.


 1 = SMS sent
-1 = Server Error
-2 = Invalid Username
-3 = Invalid message text
-4 = Login Failed
-5 = IP Blocked
-7 = Cannot Send! Way2sms Captcha Detected (Since Jan 11 2013)

Download Link :-

ClickHere

Send SMS for Multiple No's at a time (updated) Click Here

if you need any modifications please inform me....

Sending SMS via C# using Way2Sms / 160by2 accounts

simple way 2 send sms from the library as stated below....

currently it's working with 2 providers (tested) and working....

 for my personal use i used the below screen to send public IP .....
























Friday, March 23, 2012

Show Large Image on MouseOver using JavaScript in asp.net

Generally when a website displays images on the page, the use may think to see big image without clicking on the actual image. To achieve this the following example may help you ....





Sunday, March 18, 2012

HtmlEditorExtender Ajax Control - asp.net

with the help of ajax htmleditor extender we can send messages like office word with different styles.. as shown below...