Thursday, June 27, 2013

Windows 8 blogger Tamplate for free download

Download Menubar CSS free

Here is the link:
-------------------

http://cssmenumaker.com/css-drop-down-menu

SEO On Blogger


Go to Template--> Edit HTML-->Click

press (ctrl+f)  in code and find this text.
 <title><data:blog.pageTitle/></title>


Replace this text with this text :

<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> |<data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>


you have done...!!!!

Sql Server 2008 Installation Steps

How to insall SQL SERVER 2008 Step by step:-
-------------------------------------------------

Here is the link :

http://blog.sqlauthority.com/2008/06/12/sql-server-2008-step-by-step-installation-guide-with-images/

Download Crystal Report Setup file for Visual Studio 2010 (Developer edition)

Click on the First link for Standard version. This version can install in your system and you can start crystal report. (Developer edition).

https://www.sap.com/campaign/ne/free_trial/crystal_reports_visual_studio/wty_int_crvs.epx?Level=1&FormResultID=91c2d627-6436-443b-9be2-64559651bba8&ContinueURL=%2fcampaign%2fne%2ffree_trial%2fcrystal_reports_visual_studio%2findex.epx%3furl_id%3dtext-na-sapcom-crvs-trial-landing%26kNtBzmUK9zU%3d1&kNtBzmUK9zU=1



for Client edition, so that your application can run on client machine and client can able to print crystal report on his machine.
click on this link.

click "13_0.msm" in MSM 32 bit column on this page.
http://scn.sap.com/docs/DOC-7824

Allow Only Number and single dot C#

//Write code on Textbox KeyPress Event.
=============================


  private void txtQty_KeyPress(object sender, KeyPressEventArgs e)
        {
         
            if (e.KeyChar == '0' || e.KeyChar == '1' || e.KeyChar == '2' || e.KeyChar == '3' || e.KeyChar == '4' || e.KeyChar == '5' || e.KeyChar == '6' || e.KeyChar == '7' || e.KeyChar == '9' || e.KeyChar == '8' || e.KeyChar == '.')
            {
                if (txtQty.Text.ToString().Contains(".") || e.KeyChar == '.')
                {
                    if (txtQty.Text.ToString().Contains(".") && e.KeyChar == '.')
                    {
                        e.Handled = true;
                    }

                    else
                    {
                        e.Handled = false;
                    }
                }
            }
            else if (e.KeyChar == '\b')
            {
                e.Handled = false;
            }
            else
            {
                e.Handled = true;
            }

         
        }

Thursday, June 20, 2013

How to get all text in uppercase latters in a textbox using java script in asp.net

use this script in header section :-
--------------------------------

<script type="text/javascript">
        function ToUpper(txt) {
            document.getElementById(txt).value = document.getElementById(txt).value.toUpperCase();
        }
</script>



Take a textbox like this and call the java script function over here. :-
-------------------------------------------------------------------

<asp:TextBox ID="txtCode" runat="server" AutoPostBack="True"
                             ontextchanged="txtCode_TextChanged" MaxLength="99"  onkeypress="ToUpper(this.id)" onblur="ToUpper(this.id)"></asp:TextBox>