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
P

Puneet Sri

@Puneet Sri
About
Posts
10
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Query columns by name in stored procedures (SQL Server 2005)
    P Puneet Sri

    As @Column is an input parameter and you have taken varchar as data type you have to specifies the length of input parameter. for example:- @Column varchar(20) I hope this will help you. Puneet Srivastava

    Database database question sql-server design sysadmin

  • Speed consideration
    P Puneet Sri

    Stored procedure is faster then user defined function because stored procedure is precompiled and user define function is compiled at the of call So it should take little more time to respond. I hope this will help you Puneet Srivastava

    Database database performance question

  • JAVASCRIPT or serverside VALIDATION CONTROL
    P Puneet Sri

    Always use the client side validation it will save the additional round trip to server in general also is depend on your need. I hope this will help you Puneet Srivastava

    ASP.NET csharp javascript performance help question

  • Auto post back!!!!!!!!!
    P Puneet Sri

    you have one option called maintainScrollPositionOnPostBack in ASP.NET 2.0. I hope this will help you. Puneet Srivastava

    ASP.NET help

  • Error: "The file could not be loaded in to the Web Forms designer"
    P Puneet Sri

    You are using the <% %>(script tag) in aspx page that’s why you are getting the error (The file could not be loaded in to the Web Forms designer) to view the designer page first remove all <% %> tags from aspx page. I hope this will help you Puneet Srivastava

    ASP.NET help asp-net visual-studio com ai-coding

  • Validation to accept only numbers!!!
    P Puneet Sri

    function intOnly(obj) { if(obj.value!=parseInt(obj.value)) { alert("Please Enter Whole Number only"); obj.value=""; } } i hope this will help you. Puneet Srivastava

    ASP.NET question csharp asp-net

  • asp.net
    P Puneet Sri

    Go To www.w3schools.com Puneet Srivastava

    ASP.NET csharp asp-net question

  • asp.net
    P Puneet Sri

    Go To Http://www.goggle.com Puneet Srivastava

    ASP.NET csharp asp-net question

  • asp.net
    P Puneet Sri

    Go To Http://www.w3schools.com Puneet Srivastava

    ASP.NET csharp asp-net question

  • Page no's not to be shown in datagrid
    P Puneet Sri

    void BindGrid() { Grid.DataSource=ds(); Grid.DataBind(); int RecordCount=ds.Tables[0].Rows.Count; if(RecordCount==0) { Grid.PagerStyle.Visible=false; } else { Grid.PagerStyle.Visible=true; } } This will work for u. Puneet Srivastava

    ASP.NET
  • Login

  • Don't have an account? Register

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