Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jamin20

    how to store url and file path in database in asp.net

    Hi, thx for your answer. What I try to do is: - to store information related to attachments (can be a file or a url) - to display the links (listed in a grid) that when clicked will displayed (in a separate window) the corresponding attachment. My idea is to save the links in a table, when user...
  2. jamin20

    how to store url and file path in database in asp.net

    Hi all I need to save the links of some attachements. These links can be either URL (fileupload control) or Filepath (copy/paste in textbox). Shall I store URL and FilePath in same field of the same table and render them in the same grid or not ? Piece of advice + piece of code would be higly...
  3. jamin20

    Gridview in user control ??

    Hi there, I need to create a user control (unless you advise a better approach) that will contain a: 1- a FileUpload control . 2- a Gridview to display uploaded files. Could anyone: 1- confirm that this approach is fine or put me on the right track ? 2- provide some code to help me to...
  4. jamin20

    Master/Detail gridview issue

    Hi, I have set (vb.net) a Master/Detail relationship between 2 gridviews(gv). When I click on the "parent Row" from the "Master gv" the children are displayed correctly in the "Detail gv". When I get in EditMode in a row of the "detail gv" the page is refreshed and instead of having the...
  5. jamin20

    Advice to implement list of items

    Hi there ! the point is that, there are few thowsand items with about 5 possible sublevels. User has to pick an item to which some other data will be added, this "other data" takes a lot of pace in my UI. I wanted to make it easy to select an item. thx.
  6. jamin20

    Advice to implement list of items

    Hi there, Could experimented persons advise me on the following issue (piece of vb code would also be appreciated ;-)? I have to implement a facility that: 1. allows user to choose one item, at a time, from a hierarchical list of items (ID + designation ) 2. will be part of a template field (I...
  7. jamin20

    Gridview/Detailview update with one-to-many relationship

    I was looking for examples on command objects, since the Select part was done through <asp:SqlDatasource> while the update was made in vb.net code. Wanted to "homogenize" the whole so I found this approach: Dim myDV as DataView myDV = Ctype(SqlDataSource1.Select(DataSourceSelectArgument.Empty)...
  8. jamin20

    Gridview/Detailview update with one-to-many relationship

    hi there, I have a Master/Detail views. In the Detailview the Seletion is done via the SqlDataSource (calling an SP with the parameters) while the Update is done in VB code. My problem is that I'm mixing things as the update done in vb is ok but I have an error stating: "Updating is not...
  9. jamin20

    Gridview/Detailview update with one-to-many relationship

    Hi Jim, it should be ok with SQL, I meant a piece of code to switch from the declarative SqlDataSource to the vb.net coding. I managed to do it, now I'm facing a "too many parameters" error ... Regards, Jamin
  10. jamin20

    Gridview/Detailview update with one-to-many relationship

    thx jbenson001 for your quick answer!! that's what I think I will have to do, any tutorial or example? tia jamin
  11. jamin20

    Gridview/Detailview update with one-to-many relationship

    Hi all, I have a Gridview/Detailview page that implements a one-to-many relationship. Gridview contains "Document" items and Detailview contains "Contact" items. The selection mechanism works fine. When I update a Contact, the Document_ID is NULL and the update fails !! Any one to help me...
  12. jamin20

    about Listbox control &quot;unwanted&quot; behaviour

    hi there, I've found the reason of my problems: the contentPlaceHolder was having enableVewState=False !!! so stupid !
  13. jamin20

    about Listbox control &quot;unwanted&quot; behaviour

    Hi jbenson001, thanx for your reply. In my testing it was simple listboxes that I fed manually with listItems => I could not make it work. at a later stage I will have to deal with records that come from a db in the right listbox to which I may append or remove listitems. regards.
  14. jamin20

    about Listbox control &quot;unwanted&quot; behaviour

    Hi there, I'm usin VS2010 and Vb.net and i'm facing some issues with the Listox control: 1- i have a LeftListBox (LLB) from which I can copy items to two different RightListBoxes (RLB) with specific buttons for each RLB. The "unwanted" behaviour is that when I copy items from LLB to the 2nd...

Part and Inventory Search

Back
Top