• This is Slide 1 Title

    This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

  • This is Slide 2 Title

    This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

  • This is Slide 3 Title

    This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...

Thursday 26 June 2014

HTTP Error 500.22 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

Error Message:

HTTP Error 500.22 - Internal Server Error An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

Solution:

Add the following lines in web.config file.

<configuration>
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
    </system.webServer>
</configuration>


Saturday 10 May 2014

பாமினி தமிழ் தட்டச்சு பலகை ( Bamini Keyboard Layout )

பாமினி தமிழ் தட்டச்சு பலகை ( Bamini Keyboard Layout )


Thursday 8 May 2014

Today (09-May-2014) Tamil Nadu +2 (HSC) Examination Results - 2014 are released at 10.00 Hrs.

Tamil Nadu +2 HSC Result 2014

Today (09-May-2014) Tamil Nadu +2 (HSC) Examination Results are released.







Tamil Nadu Board Result 2014, 
Tamil Nadu Board of Secondary Education ,
Tamil Nadu Plus Two Class 12th Results 2014,
Tamil Nadu Class 12 Results, 
TN 12th Results 2014, 
Plus 2 Results 2014, 
Tamilnadu Board Results 2014, 
TN Board Results 2014

+2 Examination Results Expected on 9th May 2014  at 10:00 Hrs

http://tnresults.nic.in/

http://dge1.tn.nic.in/


+2 Examination Results Expected on 9th May 2014  at 10:00 Hrs

Tamil Nadu Board Result 2014, 
Tamil Nadu Board of Secondary Education ,
Tamil Nadu Plus Two Class 12th Results 2014,
Tamil Nadu Class 12 Results, 
TN 12th Results 2014, 
Plus 2 Results 2014, 
Tamilnadu Board Results 2014, 
TN Board Results 2014

Tuesday 6 May 2014

MySQL Function : DATE_ADD()

MySQL Function : DATE_ADD()

Definition:
Get date for specific time interval.

Syntax:
DATE_ADD(date, INTERVAL expr type)

Example - 01:
SET @ExampleDate = '2014-01-01';
SELECT DATE_ADD(@ExampleDate, INTERVAL 20 DAY) AS 'Add20Days';

Output:   2014-01-21

Example - 02:
SET @ExampleDate = '2014-01-01';
SELECT DATE_ADD(@ExampleDate, INTERVAL 6 WEEK);

Output:   2014-02-12

Important Notes:
Type Value :
MICROSECOND
SECOND
MINUTE
HOUR
DAY
WEEK
MONTH
QUARTER
YEAR
SECOND_MICROSECOND
MINUTE_MICROSECOND
MINUTE_SECOND
HOUR_MICROSECOND
HOUR_SECOND
HOUR_MINUTE
DAY_MICROSECOND
DAY_SECOND
DAY_MINUTE
DAY_HOUR 
YEAR_MONTH

Thursday 20 March 2014

Best Blogger Templates

Squid - Clean Responsive Blogger Template



More Info

Demo Link




Awesome Mag Responsive Free Blogger Template



More Info

Demo Link


Thursday 6 March 2014

How to Install Wordpress on XAMPP

How to Install Wordpress on XAMPP


Allow Numeric only in a textbox using javascript

Allow Numeric only in a textbox using javascript:

<script language="javascript" type="text/javascript">
function allowNumericOnly(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode;
if (charCode != 46 && charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
</script>

<asp:TextBox ID="txtSalary" runat="server" onkeypress="return allowNumericOnly(event)"></asp:TextBox>

Wednesday 5 March 2014

How to take the backup of Google Blogger Blogs?

How to take the backup of Google Blogger Blogs?

Step 1:
Login to Blogger.
Step 2:
Go to My Blogs -> Settings -> Others.
Step 3:
Click the 'Export blog' link in 'Blog Tools'.

Word Press Important Links


WordPress Theme Detector

http://www.wpthemedetector.com/

Download Best Free WordPress Themes, Plugins

http://www.wpexplorer.com/


Wednesday 12 February 2014

How to make index.php as default pages in Apache Server?

How to make index.php as default pages in Apache Server?

Step 1:
Go to C:\Program Files\Apache Group\Apache2\conf
Setp 2:
Open the 'httpd.conf' file.
Step 3:
Find the 'DirectoryIndex' in that file.
Step 4:
Add (or) replace the following line
DirectoryIndex index.php index.html

Monday 10 February 2014

How to refresh web page every 30 seconds?

How to refresh web page every 30 seconds?

If you want to refresh a page every 30 seconds, use the following code in html page.

<head>
            <meta http-equiv="refresh" content="30">
</head>    

Global.asax file not firing when uploading the files in online server using asp.net?

Global.asax file not firing when uploading the files in online server using asp.net?

To add the following lines in your web.config file to solve the issue.
<system.webServer>
          <modules runAllManagedModulesForAllRequests="true" />
</system.webServer>

Sunday 9 February 2014

Change Case: Convert to Proper Case in ASP.NET using VB.Net

This example explain the understanding of convert to Proper Case in ASP.NET using VB.Net

Example:
Dim strText As String = "welcome to allwin smart"
Dim strPropCaseText As String = String.Empty
strPropCaseText = StrConv(strText, VbStrConv.ProperCase)
txtOutput.Text = strPropCaseText.ToString
Output:
Welcome To Allwin Smart

Wednesday 5 February 2014

How to focus and select all a text box using javascript?

How to focus and select all a text box using javascript?

<script type="text/javascript">
    function jsFocus(ctrlId) {
        document.getElementById(ctrlId).focus();
        document.getElementById(ctrlId).select();
    }
</script>

How to get confirm message when delete a record using javascript?

How to get confirm message when delete a record using javascript?

<script type="text/javascript">
    function deleteConfirm() {
        return confirm('Are you sure to delete this Record?');
    }   
</script>

How to disable back button in browser usign javascript?

How to disable back button in browser usign javascript?

<script type="text/javascript">
    window.history.go(1);
</script>

Convert lowercase to uppercase using javascript?

Convert lowercase to uppercase using javascript?

<script type="text/javascript">
    function upperCase(ctrlId) {
        var x = ctrlId;
        x.value = x.value.toUpperCase();
    }
</script>

Allow numeric only in text box using javascript?

Allow numeric only in text box using javascript?

In Script File:

<script type="text/javascript">
    function allowNumericOnly(evt) {
        var charCode = (evt.which) ? evt.which : event.keyCode;
        if (charCode != 46 && charCode > 31
                && (charCode < 48 || charCode > 57))
            return false;

        return true;
    }
</script>
   
In Design Page:

    <asp:TextBox ID="txtAge" runat="server" onkeypress="return allowNumericOnly(event)"></asp:TextBox>

How to insert HTML content in XML document?

How to insert HTML content in XML document?

Using CDATA tags you can enter HTML content in XML document.

Syntax:
    <![CDATA[
   
        <!--   html coding --->
   
    ]]>

Example:

        <details>
        <pages>
            <page_id>1</page_id>
            <page_code>aboutus</page_code>
            <page_title>About Us</page_title>
            <page_desc>
                <![CDATA[<html>
                    <head>
                        <script/>
                    <head>
                    <body>
                    <p>para 1</p>
                    <p>para 2</p>
                    <p>para 3</p>
                    </body>
                    </html>
                ]]>
            </page_desc>
        </pages>
    </details>

Saturday 1 February 2014

How to set TextBox as readonly in AJAX Calendar Extender?

How to set TextBox as readonly in AJAX Calendar Extender?
Read only controls are not posted back to the server.
In postback you will lose the value in a read only control.
So, you can set the ReadOnly=False on your TextBox to use the following code.
C#.Net
protected void Page_Load(object sender, EventArgs e)
{
    txtFromDate.Attributes.Add("readonly", "readonly");
}
VB.Net
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

    txtFromDate.Attributes.Add("readonly", "readonly")

End Sub

Trick Questions:

If you set readonly=true in TextBox, you not get the value in postback.

Thursday 30 January 2014

How to check your Internet Usage for Airtel Broadband?

How to check your Internet Usage for Airtel Broadband?

Do you want check your internet usage for Airtel Broadband connection, click the below link.



How to create Property Layer using VB.Net?

How to create Property Layer using VB.Net?

Example:
Public Class boUsers

#Region "Private Variables"

    Private _uid As Integer

#End Region

#Region "Public Properties"

    Public Property uid() As Integer
        Get
            Return _uid
        End Get
        Set(ByVal value As Integer)
            _uid = value
        End Set
    End Property

#End Region

How to create Stored Procedure in MS SQL Server?

Syntex:
CREATE PROCEDURE [dbo].[sp_GetEmployee]
@EmpId INT,
@EmpName VARCHAR(50),
@DOB DATETIME,
@Error VARCHAR(MAX) OUT
AS
BEGIN
     SELECT a.EmpName, b.DeptName FROM tblEmployee a
          JOIN tblDept b ON b.EmpId=a.EmpId
          ORDER BY a.EmpName DESC

     IF @@error <> 0
          SET @Error = ERROR_MESSAGE()
END
Example:

MS SQL: ALTER

Syntex:
ALTER TABLE <table_name>
ADD <column_name> <datatype>
ALTER TABLE <table_name>
DROP COLUMN <column_name>
ALTER TABLE <table_name>
ALTER COLUMN <column_name> <datatype>
ALTER TABLE <table_name>
DROP COLUMN <column_name>
Example:

Saturday 25 January 2014

SenTamil Fonts - Keyboard Layout


SenTamil Fonts - Keyboard Layout


Friday 17 January 2014

What is the alternative of table tag valign property in CSS?

What is the alternative of table tag valign property in CSS?

CSS Property:
vertical-align
Definition:
It sets the vertical alignment of an element.
Default value:    
baseline
Example:
{vertical-align:text-top;}
Property Values:
baseline, sub (subscript), super (superscript), top, bottom, middle, text-top, text-bottom.

How to change the text to upper case, lower case, title case using CSS?

How to change the text to upper case, lower case, title case using CSS?
CSS Property:
text-transform
Definition:
It controls the capitalization (uppercase, lowercase, titlecase) of text.
Default value:    
none
Example:
{text-transform:uppercase;}
{text-transform:capitalize;}
{text-transform:lowercase;}
Property Values:
capitalize - convert first character of each word to upper case.
uppercase - convert all character of each word to upper case.
lowercase - convert all character of each word to lower case.

Monday 13 January 2014

How do you activate Windows 8 Professional or Enterprise?

How do you activate Windows 8 Professional or Enterprise?


To activate Windows 8 Professional or Enterprise version, follow the below step by step instructions.

Step 1: Right click on "Start Screen" (windows screen left corner bottom side)

Step 2: Left click on "Command Prompt (Admin)"
Step 3: In Command Window, type "slui 3" and press enter key.  Windows Activation Window will be opened.

Step 4: Type activation key for  Windows 8 Professional or Enterprise in the dialog box (in Product Key Textbox).
Step 5: Click "Activate" button.
Trick Questions
  • How to Activate Windows 8 with “SLUI”?
  • How to change Windows 8 Product Key to complete Activation?

Thursday 2 January 2014

Difference between Value Types and Reference Types

Difference between Value Types and Reference Types

Value Types:
bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short, strut, uint,
ulong, ushort. Value types are stored in the Stack
Reference Types:
class, delegate, interface, object, string. Reference types are stored in the Heap