Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
73% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #2K

19 Posted Topics

Member Avatar for NewOrder
Member Avatar for joelchrist

Yes. Still effective. Try an example here http://aliveprojects.com/apps/contactemailer/contact-emailer-ad-sponsorship

Member Avatar for matthewchung
0
138
Member Avatar for vansci123
Member Avatar for Sabryan
Member Avatar for snehalj
Member Avatar for raj_developer
0
56
Member Avatar for jiten702

In order to reduce bounce rate, the visitor must visit some other pages in your site. So, try to attract the visitor to other pages in your site from the landing page. The landing page should be easily navigable and it should contain attractive links to other pages

Member Avatar for biztrendz
0
180
Member Avatar for techie1991
Member Avatar for koti86
Re: Sir

At the bottom down area of the GMail page, look for "Last account activity" and click on the "Details: link

Member Avatar for koti86
0
81
Member Avatar for progcomputeach

I have learned C,C++,VB,Java,PL/SQL,TSQL,C#,Python,JavaScript I am using C#,Python,JavaScript,PL/SQL and TSQL for my projects now. earlier I used VB for my projects.

Member Avatar for nicolajoseph1
0
350
Member Avatar for raghavaniyer
Member Avatar for backendcode

A very database specific question. An example in SQLServer : SELECT @LastId=IDENT_CURRENT('TableName'); Search for the compatible statements in your database.

Member Avatar for pritaeas
0
88
Member Avatar for manavsm

Remember, this type of dynamic SQL query will cause SQL Injection vulnerability for your application. Use parametrized queries instead of appending the SQL string. For example: change SQL to, select * from Tbl_password where UserName=@userName and Password=@password SqlParameter userName=new SqlParameter("@userName",SqlDBType.Varchar); SqlParameter passsword=new SqlParameter("@password",SqlDBType.Varchar); cmd.Parameters.Add(userName); cmd.Parameters.Add(password); Another suggestion: Instead of selecting …

Member Avatar for raj_developer
0
356
Member Avatar for Maya Pawar

If you are using a .Net DateTime object to store the datetime value coming from the database, you can just use the ToString() method of DateTime class to display it in dd/MM/yyyy format. For example: dateTimeObject.ToString("dd/MM/yyyy") If you just need to fetch the date only from the database, use the …

Member Avatar for raj_developer
0
110
Member Avatar for Sinha's

Use separate styles for the same class. For example, [CODE] @media screen { .sampleClassParagraph { display:block; } .sampleClassLink { text-decoration:underline; } } @media print { .sampleClassParagraph { display:none; } .sampleClassLink { text-decoration:none; } } [/CODE] The HTML elemnts which uses the above CSS will display the styles on screen. When …

Member Avatar for raj_developer
0
116
Member Avatar for beanboy
Member Avatar for jiten702

Prominence is how close to the start of the area that the keyword appears. If a keyword appears at the beginning of an area, its prominence will be 100%. If a keyword appears in the middle of an area, its prominence will be 50%. So use your important keywords in …

Member Avatar for briangillet
0
218
Member Avatar for littleSenorita

1.Create a Content Management system using PHP like Joomla 2.Create a web application that enables students to share seminar topics like[I]<<snip>> [/I]3.Create an e commerce web site in PHP 4.Create a search engine optimization application in PHP

Member Avatar for littleSenorita
0
152
Member Avatar for tiddster

just use mkdir function in os module eg: your list , l=['a','b','c'] for i in l: os.mkdir(i) thats all for creating a list of folders in the current working directory Look at the OS module docs for more functionalities

Member Avatar for raj_developer
0
216
Member Avatar for MaydayLove

[code=c] class DEListProblem { public class Node { public int Data; public Node Next; public Node Prev; } public static void Main(string[] args) { Node start = new Node(); start.Data = 0; start.Next = null; start.Prev = null; Console.WriteLine("Enter total numbers"); int ct=int.Parse( Console.ReadLine()); int data; Node lastNode = new …

Member Avatar for peter_budo
0
169

The End.