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 bkrike 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. xtremeLogic

    How to Clone live data object

    Hello, I have a 5 tier architecture. I am using NHibernate as an O/R mapping tool. The basic layer structure is as follows: UI Layer -> Façade Layer -> Business Logic Layer -> Security Layer -> DB Layer In the Security Layer, it instantiates an NHibernate Session and then begins a...
  2. xtremeLogic

    Bounded Dynamic List 2 Column Structure

    Hi, I would like to output a list of possible payment options from the db and display them on a webform page. Each option has a corresponding description. Also for one option I would like to have a corresponding dropdownlist of possible values. Finally I would like the options to be only...
  3. xtremeLogic

    Problem accessing hidden form field on postback

    Hi, I have a hidden form field that I use to keep track of some client side changes in my aspx page: <input type="hidden" id="hdDeliveryMethod" value="delivery"> However, when I try to read the value of the control on postback, I get a null reference: Dim strDeliveryMethod As String =...
  4. xtremeLogic

    Running xml transformation multiple times on client side

    Hi, I have an xml that stores a list of reports. Then, I have many other xml files that store the details of each report. I have created two xsl files to transform the xml information into html. The first xsl file for outputting the original list, and the second for showing the details of...
  5. xtremeLogic

    how to delete inner row in a nested datalist

    Hi, I have a nested Datalist structure where I have set the DataKeyField of my inner datalist to the pk of its underlying datasource. I have created the ItemCommand Handler for the inner datalist. When I try to process the delete command, I run into an error: Object reference not set to an...
  6. xtremeLogic

    DataList, custom collections

    Hi, I am stuck on a problem related to one of my earlier posts that did not get resolved. thread855-792615 I would like to bind a datalist to a custom collection of a class object which would have a nested structure. Any snippet or link would be greatly appreciated. Thanks.
  7. xtremeLogic

    DataGrid, DataList, or something else?

    Hi, I have a page that keeps track of shipping information. I have everything laid out in a small table for one destination. Inside the table I have some server controls (dropdowns labels, linkbuttons, etc.) relevent to one destination. I would like to add multiple shipping destinations (ie...
  8. xtremeLogic

    Nested Group By and Order By in XSL

    Hi, I have an xml file whose basic structure is: <Scan> <Check ID=&quot;100&quot; Grade=&quot;5&quot; Type=&quot;1&quot; Cat=&quot;1&quot; Rank=&quot;3&quot; Name=&quot;Check1&quot; URL1=&quot;c1.html&quot; URL2=&quot;C2.html&quot;> <Advice>Sample summary of problem</Advice>...
  9. xtremeLogic

    Sending Parameter to XSLT file

    Hi, I have a xml file which I would like transformed into an html file. I have made a basic xslt file for the transformation. I would like the html file to have a dropdown of sort values which onclick would reload the html page in the correct sort. I am quite new to xml so I would appreciate...
  10. xtremeLogic

    Page Template - Accessing server controls

    Hi, I am not that familiar with creating templates in .NET. I wanted to have a standard header and footer to show on every page. After doing some research I came across a pretty good page template control: http://www.geekyfrog.com/control.aspx?cid=PTM I have implemented this and am able to...
  11. xtremeLogic

    Newbie question

    Hi, I am just getting accustomed to XML and I have a very basic question I hope someone can answer for me. I have an xml file which has some data values in it. I would like to output those values into a table in html format. What type of files do I have to create to achieve this? I did some...
  12. xtremeLogic

    Setting DataGrid's Datasource from another page

    Hi, I have a page that is split into two frames: top and bottom. The top page is a search parameters page and the bottom is the results page; which holds the datagrid. The search page sends the parameters to a stored procedure. I would like to update the datasource of the datagrid based on...
  13. xtremeLogic

    how to update datagrid's datasource from another page

    Hi, I have a page that is split into two frames: top and bottom. The top page is a search parameters page and the bottom is the results page; which holds the datagrid. The search page sends the parameters to a stored procedure. I would like to update the datasource of the datagrid based on...
  14. xtremeLogic

    Performance issue - Which is faster?

    Hi, I just had a quick question as to what is more efficient in terms of speed. I wanted to select a specific dropdown list item based on its value from the db. 'Dr' is the name of my SQLDataReader and 'DocType' is the value I am comparing with: Code1: DocType.SelectedIndex =...
  15. xtremeLogic

    Parsing listbox items into two separate strings

    Hi, I have a listbox that has the following template of values for each row: &quot;Company, Person&quot; Note: A comma separates the two values I would like to go through all items in the listbox and store each type of value (only 2 types) in a string separated by a ';' For example if I had...
  16. xtremeLogic

    Parsing listbox items into two strings

    Hi, I have a listbox that has the following template of values for each row: &quot;Company, Person&quot; Note: A comma separates the two values I would like to go through all items in the listbox and store each type of value (only 2 types) in a string separated by a ';' For example if I had...
  17. xtremeLogic

    stored procedure can't execute date format problem

    Hi, I have a sql server stored procedure that I would like to execute from vb.net. The problem is that it won't complete the insert into the table because of the date being sent. I am getting the date from a form field so I format it like Format(&quot;{0:MM/dd/yyyy}&quot;, docDate)...
  18. xtremeLogic

    stored procedure can't execute date format problem

    Hi, I have a sql server stored procedure that I would like to execute from vb.net. The problem is that it won't complete the insert into the table because of the date being sent. I am getting the date from a form field so I format it like Format(&quot;{0:MM/dd/yyyy}&quot;, docDate)...
  19. xtremeLogic

    stored procedure can't execute date format problem

    Hi, I have a sql server stored procedure that I would like to execute from vb.net. The problem is that it won't complete the insert into the table because of the date being sent. I am getting the date from a form field so I format it like Format(&quot;{0:MM/dd/yyyy}&quot;, docDate)...
  20. xtremeLogic

    Listbox adding new entry on button click

    Hi, I would like to add a row in a listbox based on the values of two text fields on the same form. Also, I would like to be able to delete certain rows in the listbox based on selection. I created an add button and entering the following code in the _Click Handler: Dim strTo As String strTo...

Part and Inventory Search

Back
Top