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
R

rinku soni 23

@rinku soni 23
About
Posts
37
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to Edit a gridview ,Please correct the code which i gave here.
    R rinku soni 23

    protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e) { //TextBox t= (TextBox )GridView1.Rows[e.RowIndex ].FindControl ("txtId"); //TextBox t2=(TextBox )GridView1.Rows[e.RowIndex ].FindControl ("txtName"); GridViewRow row = GridView1.Rows[e.RowIndex]; TextBox t = (TextBox)row.FindControl("txtId"); TextBox t2 = (TextBox)row.FindControl("txtName"); con.Open(); cmd = new OdbcCommand("update table AdminAddNewItem set Node_Name= '" + t2.Text + "' where Node_Id=" + t.Text, con); cmd.ExecuteNonQuery(); con.Close();

    ASP.NET tutorial announcement

  • Career in SEO(Search engine optimizer)
    R rinku soni 23

    Hello every one, I have 7 month of experience in .Net ,but still i am not getting good job. One of my friend did a course of SEO.she is having good package. Please some one tell me .whats the SEO .What's the career in this field.Should i switch in this field,What's the future in this field. please guide me.

    ASP.NET career csharp tutorial learning

  • how to slide the images those r in a folder by slide show control.
    R rinku soni 23

    Hello abhijit ,actually i have not got saticfy yet,no one answer was usefull to me ,and i need this ,hence i am asking this again.

    ASP.NET tutorial question

  • how to slide the images those r in a folder by slide show control.
    R rinku soni 23

    Hello every one ,i have some images in to folder in solution explorer.Now how can i use the slide show control from sliding those.

    ASP.NET tutorial question

  • question from slide show control.
    R rinku soni 23

    HEllo every one, i got a slide show control in ajax tool kit.I have some pic in my image folder.How can i assign datasource of slide show control.tell me please.

    ASP.NET question

  • How to get the all ajax control while those are not present in tool box.
    R rinku soni 23

    hello every one,i saw only fue controls in ajax tool kit,how can i get all the the control and use them.

    ASP.NET tutorial question

  • slide show control
    R rinku soni 23

    Hello every one,i want to know how can i use slise show control in my website,how can i get it,i am not grtting it in my tool box.How can i get it.

    ASP.NET question

  • How the images are come and change contineuouslly in a websites.
    R rinku soni 23

    There is a folder in website which consist some images.

    ASP.NET

  • How the images are come and change contineuouslly in a websites.
    R rinku soni 23

    Hello every one,i want to know how the different different images come and automatically changeand continueously get change.Tell me the way please.

    ASP.NET

  • how tochange the order of gride view colunm .
    R rinku soni 23

    Hello friend ,I am dispying a databse data in to grideview control.But porblem is ,i want to give the funcationality to change the order of column at runtime.Means i can change the order of column by just pick the column and put it where i want .Hoe to do this .Guide me

    ASP.NET tutorial

  • How to add Databse in App_data folder
    R rinku soni 23

    Hello every one,i have a (mysql) database name "classified" in my computer.i want to add this in App_data folder.how to do this .

    ASP.NET database mysql tutorial

  • App_Data folder
    R rinku soni 23

    Hello every one,i have a (mysql) database name "classified" in my computer.i want to add this in App_data folder.how to do this .

    ASP.NET database mysql tutorial

  • display data of a datatable as a text of link button in a gride view.
    R rinku soni 23

    hello every one .I have datatable which i assign as a source of grideview.Now i want bind column of that datatable with a link button which is inside the gride.Tell me the idea.

    ASP.NET

  • Problem in populating a treeview from database
    R rinku soni 23

    Hellon every one.I have a table as follow; Node_Id Node_Name Parent_Id 1 Classified 0 2 Job 1 3 Matrimony 1 4 Property 1 5 ChildofJob1 2 6 Childofjob2 2 i am using following code,but its not giving me proper structure. My logic is,i add the node in to treeview at the same time i also check is this node present into Arraylist or not,if yes then i don't add that node if no then add the node to treeview as well as arraylist also.This procedure used for each and every node of tree. // For database operation OdbcConnection con = CodeClass.GetConnetion(); OdbcDataAdapter adapter1 = new OdbcDataAdapter("select * from AdminAddNewItem ", con); OdbcDataAdapter adapter2 = new OdbcDataAdapter("select * from AdminAddNewItem ", con); DataSet ds = new DataSet(); adapter1.Fill(ds, "Parent"); adapter2.Fill(ds, "Child"); ds.Relations.Add("relation", ds.Tables["Parent"].Columns["Node_Id"], ds.Tables["Child"].Columns["Parent_Id"]); // ======================================================================================== //I am takeing a arraylist in which i am going to maintan all nodes ArrayList list = new ArrayList(); string listitem; int flage1 = 0; int flage2 = 0; //============================= foreach (DataRow Prow in ds.Tables["Parent"].Rows) { // code for add parent nodes TreeNode pnode = new TreeNode(Prow["Node_Name"].ToString(), Prow["Parent_Id"].ToString()); //code for chech whather the node already present or not for (int i = 0; i < list.Count; i++) { if (pnode.Text.ToString() == list[i].ToString ()) { flage1++; break; } } if (flage1 > 0) { flage1 = 0; Response.Write("Node already exist"); } else { TreeView1.Nodes.Add(pnode); list.Add(pnode.Text.ToString()); } //code for add Child nodes // if (Prow.GetChildRows("relation") != null) { foreach (DataRow Crow in Prow.GetChildRows("relation")) { TreeNode Childnode = new TreeNode(Crow["Node_Name"].ToString()); pnode.ChildNodes.Add(Childnode); list.Add(Childnode.Text .ToString ()); } } }

    ASP.NET database data-structures help career

  • Treeview control
    R rinku soni 23

    Hello every one ,I have a table having Column like Node_Id,Node_Name,Parent_Id; Parent_ID column consist id of the parent node.I have to populate treeview control.i am facing problem ,Guide me please.

    ASP.NET help tutorial

  • treeview with context menu
    R rinku soni 23

    Hello every one.First of all i am describing my requirment. Atually in my application i have a treeview controle.TreeView has a Context menu which has option Add item,Delete item,Edit item.When an user select Add New item then there is a window popup.by which user can enter new node.But problem is that i need user selected node for keep as parent node when he click on tree view for add new node as child node. i am not getting the value of node on which right click and want add new child node. How can i get it .please help me.

    ASP.NET help data-structures question

  • treeview with context menu
    R rinku soni 23

    Actually i a have a treeview with context menu.when user select Add new item from context menu a window open having textbox and button.I want value of Treeview.selectedNode.Text ,in this new window.How can i do this tell me please.

    ASP.NET question

  • Problem in TreeView Control
    R rinku soni 23

    Actually ,my requirement is ,there is a tree view having context menu.By whcih We can add new node,delete and edit nodes.When user select Add new ,then a window should open,having textbox and add button.by which we can enter name of new node and add it. I got context menu having Add,edit,delete option and when user select add new a window does open having textbox and add button.Problem is that i want to enter that new node as a child node of selected node in to databse.For this i require name of selected node.i want to get node name and context menu on right click on tree view parelally.

    ASP.NET data-structures help

  • problem with Treeview
    R rinku soni 23

    Hello every one i have Tree View .i made a comtext menu on treeview.This contextmenu Having option like Add New,Edit,Delete.i got this ,But problem is that for add,edit,delete i have to get the selected node of Treeview.i am not getting the things.Please tell me the way.

    ASP.NET data-structures help

  • carry object one page to other page
    R rinku soni 23

    Hello every one.I have a treeview into one page,but when i click on its context menu add button there should popup another page by here i can add new node in treeview. But porblem is that i am carrying The object of treeview control to that addnewitem page,and i am getting error .how to do this tell me please.

    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