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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
F

findtango

@findtango
About
Posts
27
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • what is diff between in these two way of adding item in cache
    F findtango

    hello friends i want to know what is diff between in these two way of adding item in cache. cache["key"]= value; and cache.add("key",value,...); thanks in advance

    ASP.NET question

  • popup clender is not working in master pages [modified]
    F findtango

    hi i have a popup calendar of java-script which is working fine in simple aspx page but not working when i am using it with master pages it is giving error of null object plzzz help me, if any one have code then send it to me thanks in advance shaleen

    modified on Friday, July 11, 2008 6:28 AM

    ASP.NET help java tools

  • how to display message to all client
    F findtango

    hi to all i have a problem in developing client server application, which start/run in system tray whenever client open the system. when client open the system , today schedule display on screen and if there is any update then a popup window is display to client. plsase help me how to develop it, if any one have demo application OR Code OR some exaple like this. thanks in advance Bye

    Windows Forms help sysadmin tutorial announcement

  • how to save only time in database field
    F findtango

    hi i want my sql server database save the data like 12:12:12 PM..Database must contain only time value nt default date value. currently it saved data like 1/1/1900 12:12:12 PM and i want it save as 12:12:12 PM plz give me solution to do this.

    Database database sql-server sysadmin tutorial

  • How to design a custom validation which work for both (Required field and regular exp.)
    F findtango

    Hello to all my friends i have many fields on my web form which req. data in a perticular format like Email. So i have to use 2 validation control Required field and regular expression. Is there any way to solv my prob. using one validation. thanks

    ASP.NET design regex tutorial

  • SQL server is not connecting from client
    F findtango

    Yes , BUT still its not working

    Database help database sql-server sysadmin tools

  • SQL server is not connecting from client
    F findtango

    A very happy new year to all my friends i m facing problem in SQL server 2000 , when i try to access it from client machine using Qurey Analyzer, it give error msg "SQL server does not exist or Access denied" BUT client can be access by the server. These are the setting on client and server. Server:-Windows2003server,SQL server 2000 Client:-Windows2000server,SQL server 2000. Server is pinging from client using IP address. Client is pinging from server using IP address. At client, In SQL Server Netverk Utility AND SQL Server Client Netverk Utility Enable protocols are TCP/IP,Named Pipes. At Server, In SQL Server Netverk Utility AND SQL Server Client Netverk Utility Enable protocols are TCP/IP,Named Pipes. At server side database can be access using Qurey Analyzer and New SQL server Registrating is made from client database using IP address. plzz help me how can i connect my client machine to server. Thanks in advance bye

    Database help database sql-server sysadmin tools

  • how build the menu using the database fields
    F findtango

    Hi , How can i build the menu using the MS Access database fields with javascript. please help me out, if sample code available thanks in advance

    ASP.NET javascript database help question

  • prob. in datagrid paging
    F findtango

    hi to all i m working in asp.net 1.0 i bind a datagrid (with paging) on page acc. to the index change of dropdownlist. when i click on page 5 in datagrid it work fine BUT if i change the value of dropdownlist to that item which don't have enough data to bind with datagrid up to pageindex 5 , it give error "Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount" plzz help thanks in advance

    ASP.NET help csharp asp-net database

  • how to redirect link to parent page
    F findtango

    yes, but it open login page in same frame,BUT I want it open it in parent page(which is my login page with no frame)

    ASP.NET csharp asp-net tutorial question

  • how to redirect link to parent page
    F findtango

    hello, To all my friends i m working in asp.net 1.0, using frame on my default page(header,left,right). how can i redirect my user to login page through code when session expire like if (Session["code"]==null) { Response.Redirect("Login.aspx"); } i want to redirect this link to parent page like this:- Redirect

    ASP.NET csharp asp-net tutorial question

  • How to get list of all check box control on web page
    F findtango

    hi i m working in asp.net 1.0 C#, i m dynamiclly generated check box control on web page acc. to the value in database. My prob is how to check how many checkbox is click by the user on submit the page. (Plzz give me sample code if possible) thanks in advance

    ASP.NET csharp asp-net database tutorial

  • error while generate gridview programmatically
    F findtango

    Thank u Very much :rose: now it is working fine with some little change u really help me a lot in my code thanks a lot buddy :-D

    ASP.NET help com

  • error while generate gridview programmatically
    F findtango

    i m try to generate gridview programmatically and want to bind data from database, BUT first i create a datatable n try to bind it with gridview. the method u suggest (string[] tmp = new string[1] {"link"}; ) in not properly working in this code at line no.8 and 12, i specify that link which is bind with field (hyp1.DataNavigateUrlFields = "link";) so that when i click on the link it open that site. when i try to run the application i got error msg :- cannot implicitly convert type 'string' to 'string[]' 1 DataTable dt = new DataTable("dtable"); 2 DataRow dr1; 3 DataRow dr2; 4 dt.Columns.Add(new DataColumn("Text", typeof(string))); 5 dt.Columns.Add(new DataColumn("link", typeof(string))); 6 dr1 = dt.NewRow(); 7 dr1[0] = "Yahoo"; 8 dr1[1] = "http://www.yahoo.com"; 9 dt.Rows.Add(dr1); 10 dr2 = dt.NewRow(); 11 dr2[0] = "Google"; 12 dr2[1] = "http://www.google.com"; 13 dt.Rows.Add(dr2); 14 GridView GV = new GridView(); 15 GV.AutoGenerateColumns = false; 16 HyperLinkField hyp1 = new HyperLinkField(); 17 hyp1.HeaderText = "UsefulLinks"; 18 hyp1.DataTextField = "Text"; 19 hyp1.DataNavigateUrlFields = "link"; 20 hyp1.Target = "_blank"; 21 GV.Columns.Add(hyp1); 22 GV.DataSource = dt; 23 GV.DataBind(); 24 plhPlaceHolder.Controls.Add(GV);

    ASP.NET help com

  • error while generate gridview programmatically
    F findtango

    i m using datatable field to bind link to that field how to convert that field in a string array

    ASP.NET help com

  • error while generate gridview programmatically
    F findtango

    hi i want generate gridview programmatically to but having a error in hyp1.DataNavigateUrlFields = "link"; ERROR:- cannot implicitly convert type 'string' to 'string[]' plzzzz help me thanks in advance DataTable dt = new DataTable("dtable"); DataRow dr1; DataRow dr2; dt.Columns.Add(new DataColumn("Text", typeof(string))); dt.Columns.Add(new DataColumn("link", typeof(string))); dr1 = dt.NewRow(); dr1[0] = "Yahoo"; dr1[1] = "http://www.yahoo.com"; dt.Rows.Add(dr1); dr2 = dt.NewRow(); dr2[0] = "Google"; dr2[1] = "http://www.google.com"; dt.Rows.Add(dr2); GridView GV = new GridView(); GV.AutoGenerateColumns = false; HyperLinkField hyp1 = new HyperLinkField(); hyp1.HeaderText = "UsefulLinks"; hyp1.DataTextField = "Text"; hyp1.DataNavigateUrlFields = "link"; hyp1.Target = "_blank"; GV.Columns.Add(hyp1); GV.DataSource = dt; GV.DataBind(); plhPlaceHolder.Controls.Add(GV);

    ASP.NET help com

  • how to show gridview with out data
    F findtango

    I'm returning a dataset to a gridview control. When the gridview asp.net control is populated from the returning dataset, if dataset is empty. The cells that are empty, in the gridview control, I would like to have the value of 0 (zero) inserted. So if no data is returned to that cell a 0 (zero) is shown.

    ASP.NET csharp asp-net tutorial

  • how split function work in sql [modified]
    F findtango

    hi plzz tell me, if any one use split function in sql server 2000 i want to split one column data and then get coresponding values from another table like:- table_1 year code 2001 1,2,6 2002 2,5,6 table_2 code name 1 one 2 two 5 five 6 six i want to split code on(,)but this query is not working. "select name from table_2 where code=(split(select code from table_1 where year='2001'))" plzz help me thanks in advance john -- modified at 11:16 Wednesday 7th March, 2007

    Database database sql-server sysadmin help

  • how to use crystal report viewer with parameater
    F findtango

    thanks for reply BUT i m not using dataset, i wnat to include .rpt file in asp.net page with parameter

    ASP.NET csharp asp-net help tutorial

  • how to use crystal report viewer with parameater
    F findtango

    hi to all i m working on asp.net 1.0 with crystal report 9 i create my report (.rpt) in crystal report 9 and it is working fine there. Now the problem is how to add this report on form with parameters pl. give some sample code OR URL thanks in advance john

    ASP.NET csharp asp-net help tutorial
  • Login

  • Don't have an account? Register

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