Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

Navi15

@Navi15
About
Posts
36
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to restrict Copy and Paste in textbox control
    N Navi15

    Hi Reddy, I couldn't restrict copy and paste in a textbox but colud restict copy and paste on whole form. here's the solution add oncontextmenu="return false" to the body tag

    Naveen G MCSD.Net

    C# question csharp tutorial

  • getting a latest value that was inserted into a database.
    N Navi15

    use IDENT_CURRENT( 'table_name' ) to get the last identity value generated for a specified table or view in any session and any scope.

    Naveen G MCSD.Net

    C# database sql-server visual-studio sysadmin help

  • Win To Web
    N Navi15

    Check out this link http://www.c-sharpcorner.com/UploadFile/asprabahar/1WindowsonWeb05302006023206AM/1WindowsonWeb.aspx?ArticleID=2f5df473-5b2d-4c6b-abc8-8a5ef7ef14c8 Navi

    C#

  • Do we need to call dbCommand.Dispose() ?
    N Navi15

    You cannot Dispose Command Object after ExecuteReader Method, the datareader object maintains the connection to the database as it will not pull all data at once, and it will pull data record by record. So dispose the command object after getting all the data.

    Naveen G MCSD.Net

    C# question database help

  • DataGridView New Row
    N Navi15

    Set the Read only Property of Datagrid to true Navi

    C#

  • Reading a .Doc File
    N Navi15

    use Microsoft Word Object Library to read and write Word documents Navi

    ASP.NET csharp asp-net help

  • Clearing the contents of session variables
    N Navi15

    Session["variablename"]=null; Navi

    Web Development tutorial question

  • Index of the selected item in combobox Datagridview
    N Navi15

    check out this code aspx page asp:datagrid id="Datag" runat="server" Width="100%" AutoGenerateColumns="False" PageSize="10" asp:TemplateColumn HeaderText="Dropdown test" ItemTemplate asp:DropDownList id="DropdownAction" AutoPostBack="True" OnSelectedIndexChanged="DdAction_SelectedIndexChanged" Runat="server" Code behind file (.cs) public void DdAction_SelectedIndexChanged(object sender, System.EventArgs e) { DropDownList list = (DropDownList)sender; if (list.SelectedIndex == 0) { //Actions for item 1 } else if (list.SelectedIndex == 1) { //Actions for item 2 } } Navi

    Visual Basic question database

  • Printing Directly
    N Navi15

    Check out the following link http://web6.codeproject.com/printing/printing\_wo\_docview.asp?df=100&forumid=147&exp=0&select=862397 Navi

    ASP.NET javascript help

  • Custom Grid
    N Navi15

    Check out this link www.datagridgirl.com Navi

    ASP.NET css tutorial

  • Web service [modified]
    N Navi15

    Mark the prwebsr as application in the IIS Hope this will solve your Problem Navi

    ASP.NET help

  • RSS aggregator in Website or Web application...
    N Navi15

    Check out this link http://aspnet.4guysfromrolla.com/articles/031903-1.aspx Navi

    ASP.NET csharp asp-net help announcement

  • VB.NET SQL procedures to return values
    N Navi15

    insted of using [SELECT MAX(l_id) FROM listings] use IDENT_CURRENT(listings) IDENT_CURRENT Returns the last identity value generated for a specified table Navi

    Database database csharp help

  • Copy Stored Procedure
    N Navi15

    Try this Copying a Table into an Existing Table insert into originaltable select * from mytablecopy where [Condition] Navi

    Database database help question

  • image on button? [modified]
    N Navi15

    Use image button Navi

    Visual Basic graphics question

  • how to create database during setup installation
    N Navi15

    Check out this link http://msdn2.microsoft.com/en-us/library/49b92ztk.aspx Navi

    Visual Basic database csharp sql-server sysadmin

  • VB.NET SQL procedures to return values
    N Navi15

    Check out this link http://aspnet.4guysfromrolla.com/articles/062905-1.aspx Navi

    Database database csharp help

  • Question about DataGrid web control ? [modified]
    N Navi15

    yes the ViewState property should be set to true for paging (default) Navi

    ASP.NET question

  • How to see data properly in text box
    N Navi15

    Check out this link http://www.vbcity.com/forums/topic.asp?tid=20175 Navi

    Visual Basic csharp json tutorial

  • Get URL/Webpage address in Back Button (JavaScript)
    N Navi15

    The window.history property is an array of URL strings which reflect the entries in the History object the previous property contains the complete URL of the previous element in the History list, and is the equivalent of the URL the user would go to if they selected Back in the Go menu. Syntax: history.previous Navi

    Web Development javascript help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups