(1) SELECT a.HD, a.HEAD, a.SH, a.SUBHEAD, a.TRK, a.TRACK, a.TGT, a.TARGET, a.PDC, a.DT_RELEASE, a.STATUS, a.CO FROM V_HIERARCHY1 a
(2) and Data is
HR HR Rec Records Leave Leave Records HRL.0001 Policy and Process for leave record. 27.06.2010 30.06.2010 WIP Edlink HR HR Rec Records Leave Leave Records HRL.0002 Quarterly Review 01.07.2010 04.07.2010 Planned Edlink HR HR DB Database SAL Salary DDS.0001 Calculation of Monthly salary 08.08.2010 09.08.2010 WIP Edlink HR HR Rec Records Ind Induction Records HRI.0001 Completion of dossiers. 08.07.2010 10.07.2010 WIP Edlink HR HR DB Database Emp Employee HDE.0001 Offer letter 06.07.2010 09.07.2010 WIP Edlink IT Info Tech SW Software ERP.Web Web based ERP ISE.0001 Version 1 10.07.2010 12.07.2010 Overdue Edlink
Is it possible to create a route, who accepts a random number of Categories/subCategories and is still able to understand /ProductID/ProductName where Product ID is an int and ProductName is a string.
Can someone help me create a tree view like radio button list? Say I have 2 radio buttons. When they select one radio button it will populate a sub radio button. The user than make his/her selection and click submit.
I am developing an ASP.Net web application for my client which is into Multi Level Marketing Business. I need to show him the treeview of the members under any member he chooses. For eg. he selects 'Member A' from the DropDownList, and clicks Submit, he should get a treeview of all the members under 'Member A'
I have two control page in my aspx page. first one left side "tree view",second one right side " form design".Form design will change based on tree view selected index changed.i have 4 level child node(site, master , slave, space). I have seperate forms to each level of node.
cannot update tree node when update the forms. so i reload tree view.
now i need how to auto selected index change to tree node.
ex.
1 parent node
1.1 child node
1.2 child node
i have update "1.2 child node" rename to "1.3 child node"
and reload treeview so it will chage...
how set tree node.selected index = 1.3 child node....
how to create sql query and display one element of that table in view? every example on the website demos controls that add big tables of data. that's useful like 10% of the time. how about displaying one element from a query?
I want to modify the way the Views are organised in my project to allow for a custom way of handling Globalization
I want to have an extra route param containing the country code and to pass this down to the view engine so that the correct view is displayed.
My mapRoute rule in Global.asax is set up like this...
[Code]....
So I want to just have 1 controller called main and then have my view folders organised like this..../Views/Main/en/Index.cshtml/Views/Main/fr/Index.cshtml I have tried creating a custom view engine but i don't know how to access the countrycode route value because none of the examples show how to do this.
i want to create a forum like page in ASP ,C# where user can enter some question. Administrator reply this question,according to if user does not satisfied with the solution then in same thread he may ask for further clearance.for example the forum of asp.net ( the current page)
i have a problem in .net web application... i have created a tree view which runs perfect on windows XP but as i try to run this application on windows7 the tree view is not displayed/visible .
I have a web application where I am using asp.net tree view control to show data. No I want that this tree view structure has to exported to excel. Following is the code which do this for me.
It works perfect but the report what it gives me contains all parent and child node of tree view get palced in excell cell as well as icons and checkboxes which I have use. What I want is to have only Text in excel cell that represent node of tree view and not those icons and checkboxes associated with them.
I am trying to implement some tree like that in ASP.NET:
However, this is a TreeView component in the Navigation Tab. I want a DataGrid in a tree view which isn't navigation. Is there a ready FREE component out there?? If not, what is the right component to start with to build such a tree component???
I'm not in a hurry, it will be better for me if I can build my own, but I want to know the component to start with?is it the DataGrid?
As you see the <td> for products must always be no more than 3 columns. but if there are 8 products then there will be 3 rows (2 full rows and one row with only 2 products) So far I have this:
I am using asp.net 3.5 and I am trying to create a project structure (asp.net web solution with UI/Business/Data access) which would be like a base and ready for any new projects in my team and all could use this standard structure only as a base(outer boundary) and they can expand the structure. Also adding on to it I wanted to include certain features like adding libraries of reusable code/functions, so that every team member could use functions from my library within this base structure. To summarize the above, I need to create standard .net project structure/framework/architecture with resusable code library included in it. How can I do this..