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
Puneet Sri
Posts
-
Query columns by name in stored procedures (SQL Server 2005) -
Speed considerationStored 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
-
JAVASCRIPT or serverside VALIDATION CONTROLAlways 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
-
Auto post back!!!!!!!!!you have one option called maintainScrollPositionOnPostBack in ASP.NET 2.0. I hope this will help you. Puneet Srivastava
-
Error: "The file could not be loaded in to the Web Forms designer"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
-
Validation to accept only numbers!!!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.netGo To www.w3schools.com Puneet Srivastava
-
asp.netGo To Http://www.goggle.com Puneet Srivastava
-
asp.netGo To Http://www.w3schools.com Puneet Srivastava
-
Page no's not to be shown in datagridvoid 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