VB.NET method for dropdownlist binding.....................

6:41 AM | Comments (0)

Public Shared Sub combofill(ByVal cmm As SqlCommand, ByVal dropdown As DropDownList, ByVal valuefield As String, ByVal textfield As String)      ...

Read more

VB.NET function for Stored Procedures..........................

6:41 AM | Comments (0)

Public Shared Function proc(ByVal prcname As String, ByVal prcnames() As String, ByVal prcvalues() As String) As String         Dim...

Read more

Set Session using Jquery and Webservice.............................

6:41 AM | Comments (0)

<asp:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release">             <Services>                 <asp:ServiceReference Path="~/DropdownWebService.asmx" />...

Read more

Numeric and null validation......................

6:40 AM | Comments (0)

<asp:TextBox runat="server" ID="txtPopCount" Width="140Px" Text="">                             </asp:TextBox>    ...

Read more

Jquery Mask Editor.................

6:39 AM | Comments (0)

<script type="text/javascript" language="javascript">             Sys.Application.add_load(function () {                 $("#date").mask("99/99/9999");  ...

Read more

Price format string in Gridview.................................

6:39 AM | Comments (0)

<asp:BoundField DataField="retail_total" DataFormatString="{0:C}" HeaderText="Total Price"                             SortExpression="retail_total">    ...

Read more

Decimal point format string in Gridview............................

6:39 AM | Comments (0)

<asp:BoundField DataField="quantity" DataFormatString="{0:#,###}" HeaderText="Quantity"                             SortExpression="quantity">      ...

Read more

Date format string in Gridview.............................

6:38 AM | Comments (0)

<asp:BoundField DataField="releasedate" HeaderText="Release Date" SortExpression="releasedate"                             DataFormatString="{0:M/dd/yyyy}">    ...

Read more

Down Load Files in Gridview using VB.NET................................................

6:37 AM | Comments (0)

<asp:GridView runat="server" ID="gridloadingdownload" Width="99%" DataKeyNames="attachdoc_id"                     ShowHeaderWhenEmpty="true" AutoGenerateColumns="false" BorderColor="LightSkyBlue"        ...

Read more

Down Load Files in Gridview using VB.NET................................................

6:37 AM | Comments (0)

<asp:GridView runat="server" ID="gridloadingdownload" Width="99%" DataKeyNames="attachdoc_id"                     ShowHeaderWhenEmpty="true" AutoGenerateColumns="false" BorderColor="LightSkyBlue"        ...

Read more

Calender Extender for TextBox.......................

6:37 AM | Comments (0)

<asp:TextBox runat="server" ID="txtReleaseDate" Text="" Width="190Px" >                                ...

Read more

Comma appeared in textbox in Chrome browser Fixing by Jquery.........................

6:37 AM | Comments (0)

<script type="text/javascript">         function filterElements() {             $("#<%=TabContainer1.ClientID %>").find("input[type=text]").each(function () {      ...

Read more

Read Gmail Inbox using Gmail Feed in asp.net........................

6:36 AM | Comments (0)

GmailHandler.cs using System; using System.Data; using System.Xml; using System.Net; using System.IO; /*  * this code made by Ahmed Essawy  * AhmedEssawy@gmail.com  *...

Read more

Connection String in Web.config........................

6:36 AM | Comments (0)

<connectionStrings>   <add name="SurgereConnection" connectionString="Data Source=.;Initial Catalog=Surgere1;UID=sa;password=tiger123"/>  </connectionStrings> ...

Read more

Function in SQL...................

6:35 AM | Comments (0)

USE [Surgere1] GO /****** Object:  UserDefinedFunction [dbo].[checkclassid]    Script Date: 04/27/2012 12:08:15 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER...

Read more

SQL Table-Valued Functions..........................

6:35 AM | Comments (0)

USE [Surgere1] GO /****** Object:  UserDefinedFunction [dbo].[fnAssetTranactionList]    Script Date: 04/27/2012 12:09:17 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER...

Read more

Bind Gridview using Jquery........................

6:34 AM | Comments (0)

DataStore.cs using System; using System.Data; public class DataStore {  public DataStore()  {   //   // TODO: Add constructor logic here  ...

Read more

Export Gridview Data to Excel and Word Doc using c# and asp.net............................

6:34 AM | Comments (0)

Default.aspx <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" EnableEventValidation="false" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server">...

Read more

Image Tooltip using Jquery.................

6:33 AM | Comments (0)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>  <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>  <title>jQuery Image Tool Tips Demo - Queness</title>  <script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>...

Read more

Image Tooltip in asp.net using Jquery............................

6:32 AM | Comments (0)

PhotoGallery.aspx <script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>  <script type="text/javascript">      // Load this script once the document is ready      $(document).ready(function () {...

Read more