Tuesday, October 16, 2012

Website Traffic conversion Rate


Improve Your Website Traffic Through Conversion Rate Optimization

Do you have a website that obtains abundance of traffic each and every day but you can't look to amplify your conversion rate?

For several online business owners, the daily goal is not merely to raise traffic but also to progress their conversion rates. The higher the conversion rate, the superior the profit is.

However, not each one is flourishing at creating conversions and as such; mainly of the traffic that goes in and out of their site ends up exhausted. But what could be causing the breakdown in conversion?

There are really numerous things that could be causing this. One of the mainly frequent would be the website's design. Such a difficulty could be effortlessly resolved by obtaining a web site designer to assist fix the difficulty or you can do it manually.

There are, however, various cases wherein the website design isn't the difficulty at all. When that happens, what do you do? Well, for starters, you require assessing the difficulty.

Normally, the greatest solution here is to do a website conversion rate optimization. Essentially, it means that you are optimizing your website to create the mainly of the traffic it obtains, targeting prospective customers and ultimately converting them into real customers.

You might desire to modify the way you describe your business as well as your sales pitch. If you experience like your sales pitch is a modest bit too forceful than you may desire to tone it down a bit.

Sometimes, it's these small things that create all the difference. Remember that the enhanced you treat everybody who visits your website, the enhanced these people would vision your business.

Since it is an online business, trust is a chief concern. If you can acquire these people to trust you based upon the look, the words and additional feature of your website then you can most definitely raise your conversion rate. So, take a faster look at your website and modify the things that require development.

Introduction To ASP


Microsoft Active Server Pages(ASP) is a server-side scripting  technology. ASP is a technology that Microsoft created to ease the development of interactive Web application. With ASP we can use client-side scripts as well as sever-side scripts. Maybe we want to validate use input or access a database. ASP provides solutions for transaction processing and managing session state. ASP is one of the most successful language used in web development.

Problems with Traditional ASP
  • Interpreted and Loosely-Typed Code :-
                                                                        ASP scripting code is usually written in language such as JScript or VBScript. The script-execution engine that Active Server Pages relies on interprets code line by line,  every time the page is called. In addition, although variables are supported, they are all loosely typed as variants and bound to particular types only when the code is run. Both these impede performance, and late binding of types marks it harder to catch errors whey you are writing code.
  • Mixes Layout (HTML) And Logic(Script Code):-
                                                                                 ASP files frequently combine script code with HTML. This result in ASP scripts that are lengthy, difficult to read and switch frequently between code and HTML. The interspersion of HTML with ASP code is particular problematic for large web applications, where content must be kept separate from business logic.
  • Limited Development And Debugging Tools :-
                                                                             Microsoft Visual InterDev, Macromedia Visual UltraDev, and other tools have attempted to increase the productivity of ASP programmers by providing graphical development environment.  However, these tools never achieved the ease of user or the level of acceptance achieved by Microsoft Windows application tools, such as Visual Basic or Microsoft Access. ASP developers still rely heavily or exclusively on Notepad.
Debugging is an unavoidable part of any software development process, and the debugging tools for ASP have been minimal. Most ASP programmers resort to embedding temporary Response. Write statement in their code to trace the progress of its execution.
  • No Real State Management :-
                                                       Session state is only maintained if the client   browser supports cookies. Session state information can only be held by using the ASP Session object. And we have to implement additional code if we want to identify the user.
  • Update Files Only When Server Is Down :-
                                                                           If our web application makes use of components, copying new files to our application should only be when the Web server is stopped. Otherwise it is like pulling the rug from under our application’s feet, because the components may be in use(and locked) and must be registered.
  • Obscure Configuration Settings :- 
                                                                             The Configuration Information for an ASP web application(such as session state and sever timeout) is stored in the IIS metabas. Because the metabase is stored in a property format, it can only be modified on the server machine with utilities such as the Internet Service Manger. With limited support for programmatically Manipulating or extracting these settings, it is often an arduous task to port an ASP application from one server to another.

Introduction To ASP.NET


ASP.NET INTRODUCTION

ASP.NET is a web application framework developed and marked by Microsoft to allow programmers to build dynamic websites, web application  and web services. It was first released in January 2002 with version 1.0 of the .NET framework, and it is successor to Microsoft’s Active Server Pages(ASP) technology. ASP.NET  is built on the Common Language Runtime(CLR) allowing programmers to write ASP.NET code using any supported .NET language.

Advantages Of ASP.NET
  • Separation Of Code From HTML :- 
                                                                    To make a clean sweep, with ASP.NET we have  the ability to completely separate layout and business logic. This makes it much easier for teams of programmer and designers to collaborate efficiently.
  • Support For Compiled Languages :-
                                                                   Developer can use VB.NET and access features such as strong typing and object – oriented programming. Using compiled languages also means that ASP.NET pages do not suffer the performance penalties associated with interpreted code. ASP.NET pages are pre-compiled to byte-code and Just In Time(JIT) compiled when first requested Subsequent request are directed to the fully compiled code, which is cached until the source changes.
  • Use Services Provided By The .NET Framework :-
                                                                    The .NET Framework provides class libraries that can be used by our application. Some of the key classes  help us with input/output, access to operating systems services, data access  or even debugging.
  • Graphical Development Environment :-
                                                                   Visual Studio.NET provides a very rich development environment  for web developers. You can drag and drop controls and set properties the way we do in Visual Basic and we have full IntelliSense support, not only for our code, but also for HTML and XML.
  • State Management :-
                                          To refer the problem mentioned before, ASP.NET provides solutions for session and application state management. State information can, for example, be kept in memory or stored in a database. It can be shared across Web farms, and state information can be recovered, even if the server fails or the connection breaks down.
  •  Update Files While The Server Is Running :-
                                                                      Components of our application can be updated while the server is online and clients  are connected.  The Framework will use the new files as soon as they are copied to the application. Removed or old files that are still in use are kept in memory until the clients have finished.
  • XML-Based Configuration Files :-
                                                                  Configuration  settings in ASP.NET are stored in XML files that we can easily read and edit. We can also easily copy these to another server, along with the other files that comprise our application.

Wednesday, October 10, 2012

SQL QUERIES



/*creating Database Syntax*/
Create Database Sample
/*Create Table Syntax*/
create table Student(Sno numeric,Sname varchar(25),Sage numeric,Sdob datetime,Splace varchar(25))

/*Inserting Values in Table*/
insert into student values(103,'dhas',25,11/26/1990,'Tambaram')


/*select Table*/
select * from student

/*Drop Table Syntax */

drop table student

/*Truncate table Syntax*/
truncate table student
/*Delete table syntax */
delete from student
/*update table*/
update student set sname='amal' where sno=101

/*Primary Key without constraint name*/
create table Empdetails(Empno numeric primary key,Ename varchar(30),Edob datetime,Emobile numeric,Eemail varchar(50),Eplace varchar(30))

insert into Empdetails values(102,'Peter','02/23/1984',9233333,'reeed@rediffmail.com','India')


select * from Empdetails

/*foreign key without constraint name*/

create table Empsaldetails(Empno numeric foreign key references empdetails(empno),Ebpay numeric,Ehra numeric,Eda numeric,Esal numeric )

insert into empsaldetails values(103,25000,5000,500,30500)


/*primary key with constraint name*/

create table Persons(p_id numeric constraint pk_Persons primary key,Pname varchar(25),Pcity varchar(25))

insert into persons values(2,'ramky','trichy')

select * from persons


/*Drop Constraint Syntax*/
ALTER TABLE Persons
DROP CONSTRAINT pk_Persons

/*foreign key with constraint name */
create table orders(O_id numeric constraint fk_orders foreign key references persons(p_id),O_number numeric)

insert into orders values(3,875)
drop table orders

select * from orders

/*Drop Constraint Syntax*/
ALTER TABLE orders
DROP CONSTRAINT fk_orders

delete from orders where o_id=2



/*Joins*/

create table customers(c_id numeric primary key,c_fname varchar(25),c_Lname varchar(50),a_addr varchar(50),c_city varchar(25))
create table supplier(S_id numeric,S_num numeric,c_id numeric foreign key references customers(c_id))


insert into customers values(2,'asas','ghjj','kambar c8','trichy')
drop table supplier

select * from supplier
select * from customers
insert into supplier values(3,8967,3)

/*Inner Joins*/



SELECT customers.c_fname, customers.c_Lname, supplier.S_num
FROM customers
INNER JOIN supplier
ON customers.c_id=supplier.c_id
ORDER BY customers.c_Lname




/*join concept */

create table employee(ID int,name nvarchar(25),salary int)


create table job(ID int,title nvarchar(25),averageSalary int)



select * from employee;


select * from job;

/*Inner join */

 SELECT e.ID, e.Name, j.title FROM Employee e INNER JOIN Job j ON e.Id = j.ID

  /*leftOuter Join*/

SELECT e.id,e.name,j.title FROM Employee e LEFT OUTER JOIN job j ON e.id = j.id

/*Right Outer Join*/

SELECT e.id, e.name, j.title FROM Employee e RIGHT OUTER JOIN job j ON e.id = j.id
          

/*cross Join*/

 SELECT e.ID,e.Name,j.title FROM Employee e CROSS JOIN job j ORDER BY j.ID


/*full join */
select * from employee full join job on employee.id=job.id
select * from employee
select * from job


/*Union Concept */

create table one(names varchar(30),age int)
insert into two values('five',5)

select * from one

select * from two

/*union*/

select * from one
union
select * from two

/*union all*/
select * from one
union all
select * from two


Thursday, June 14, 2012

மெல்லக் கொல்லும் செல் போனும் தப்பிக்க சில வழிமுறைகளும்!


மெல்லக் கொல்லும் செல் போனும் தப்பிக்க சில வழிமுறைகளும்!

 

இன்று செல்போன் அத்தியாவசியமான ஒன்றாகிவிட்டது. அதனால் பாதிப்புக்கள் பல இருந்தும், அதனை கைவிடமுடியாது தவிக்கிறோம்.
அவ்வாறான செல்போன் ஆபத்துக்களில் இருந்து குறிப்பிட்ட அளவில் நம்மை பாதுகாக்க சில பரிந்துரைகள் கீழே தரப்படுகின்றன,
மொபைல் போனில் ஸ்பெசிபிக் அப்சார்ப்ஷன் ரேட்(SARSpecific Absorption Rate) என்று ஒரு அளவைக் கூறுகின்றனர்.


மொபைல் போன்கள் வாய்ஸ் மற்றும் டெக்ஸ்ட் அனுப்பிப் பெறுவதற்கு ரேடியோ அலைவரிசையை சக்தியைப் பயன்படுத்து கின்றன.இதனை நம் உடல் தசைகள் உறிஞ்சுகின்றன. ஒரு கிலோ தசையில் எந்த அளவு உறிஞ்சப்படும் வகையில் வெளியாகிறதோ அதனை SAR ரேட் என அழைக்கின்றனர். ஒவ்வொரு போனுக்கும் ஒருSAR ரேட் உண்டு. இந்த SAR ரேட் அதிகமாக இருந்தால், போனின் கதிர்வீச்சும் அதிகமாக இருக்கும்.

உங்கள் போனின் பேட்டரிக்குக் கீழாக, போனுடைய FCC (Federal Communications Commission) எண் தரப்பட்டிருக்கும். FCC யின் இணைய தளம் சென்று, உங்கள் போனின் FCC எண் கொடுத்து அதன் கதிர்வீச்சு மற்றும் அபாய தன்மையினைத் தெரிந்து கொள்ளலாம்.




போனுடன் ஹெட்செட் அல்லது ஸ்பீக்கரை இணைத்துப் பயன்படுத்துவது பயன் தரும். ஏனென்றால் போனை உடலுடன் ஒட்டி இல்லாமல் வைத்துக் கொள்ளலாம். போனை ஸ்பீக்கர் மோடில் வைத்து இயக்குவதனால், போன் கதிர் வீச்சு தலைக்குச் செல்லாமல் பார்த்துக் கொள்ளலாம்.
போனில் பேசும் போதும், டெக்ஸ்ட் அனுப்பும்போதும் கதிர்வீச்சு அதிகம் இருக்கும். ஆனால் வரும் அழைப்பினைக் கேட்கும் போது இது குறைவாக இருக்கும். எனவே குறைவாகப் பேசுவது நல்லது. மிக அவசியமான நேரங்களில் மட்டும் மொபைல் ஐ பயன்படுத்துங்கள்.


உங்கள் போனுக்கான சிக்னல் குறைவாக இருந்தால், உங்கள் போன் ஒலி அலையைப் பெற முயற்சிக்கையில் கதிர் வீச்சு அதிகமாக இருக்கும். எனவே அப்போது பேச முயற்சிப்பதை நிறுத்தி, பின் சிக்னல் அதிகமாக இருக்கையில் பேசவும்.


சிறுவர்களின் உடல் மற்றும் மூளையே பெரியவர்களைக் காட்டிலும் அதிகம் மொபைல் கதிர்வீச்சின் பாதிப்புக்குள்ளாகும். எனவே சிறுவர்களை மொபைல் பயன்படுத்துவதிலிருந்து தடுக்கவும். குழந்தைகளுக்கு அருகில் இருந்து மொபைலை பயன்படுத்தவேண்டாம். முக்கியமாக கர்ப்பினிகளுக்கு அருகில் மொபைலில் பேசுவதை தவிர்க்கவும்.


மொபைல் போன் உறைகள் போனுக்கு வரும் சிக்னல்களை ஓரளவிற்குத் தடுப்பதால், சிக்னல்களைத் தெளிவாகப் பெற உங்கள் போன் அதிக கதிர்வீச்சினை அனுப்பும். எனவேளுறைகள் பயன்படுத்துவதனைத் தடுக்கவும்.


சந்தையில் மலிவாக கிடைக்கும் சீன தயாரிப்பு மொபை போன்கள், ஏனையவற்றை காட்டிலும் அதிக கதிர்வீச்சை கொண்டவை என்பதை கவனத்தில் கொள்ளுங்கள்.




இவைதவிர, போக்குவரத்தில் வாகனம் ஓட்டும் போது மொபைல் பாவிப்பது உடனடி மரணத்தை விளைவிக்க கூடியது.




Thanks to www.tamilcloud.com