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 strongm 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. sandylou

    Include Virtual IIS 7

    that was a typo on my part for the include(s).. I have enabled Parent Paths and it wouldn't work. It is because the Default Web Site is under c:\inetpub\wwwroot Under older windows when you Share a folder, you select Web Share and it shares it under Default Web Site. When you create a share...
  2. sandylou

    Include Virtual IIS 7

    One thing I do know is that it will work under my c:\inetpub\wwwroot Folder The only thing that is missing is the Folder Sharing under Default Web Site. This option is not available in window 2008. I tried adding a virtual Folder mapping at the top level, but that still does not work. What...
  3. sandylou

    Include Virtual IIS 7

    I have googled everything I can think of. I have the following Under Default Web Site I have an application 'PreScreen' under a virtual directory 'DEV' Default Web Site -->DEV --> PreScreen PreScreen is under H:\iisSites\PreScreen under PreScreen I have the following folders...
  4. sandylou

    DetailsView insert and edit

    thank you for responding, i was trying to do send you an example and then I found the solution here: http://www.vbforums.com/archive/index.php/t-631206.html Thanks!
  5. sandylou

    DetailsView insert and edit

    I have a gridview which when selected will populate a detialsview. The problem I am running into is that I am using code behind to load my gridview and detailsview by accessing a stored procedure and filling a datalist. I have the gridview working. In the detailsview though, I can not access...
  6. sandylou

    Isdate returns true

    Hi i have a date I am trying to see if is valid 1/106 When I use isdate, it returns true. is there another easy way to check if this is valid other than breaking down the string into parts?
  7. sandylou

    Dynamic Variable Creation

    i am sorry, i thought that the same table showed basically what i am looking for. on the web page basically it is a table with 20 possible values to check (1-20) which a text display of those values. So if i want 1 = A i check one and type in A. The table is basically a binderNo, step, and...
  8. sandylou

    Dynamic Variable Creation

    i have already passed the checkboxes as variables ck1-ck2 only if i have a value for the checkbox, now i need to save it..i guess i can just do the 20 inserts :(
  9. sandylou

    Dynamic Variable Creation

    maybe i will just have to loop through checkboxes in .net page and execute stored procedure from there or 20 if statements in the stored procedure!! :)
  10. sandylou

    Dynamic Variable Creation

    I have a web page which has 20 checkboxes with numbers 1-20. I am trying to create a stored procedure which takes these parameters passed from the page (ck1, ck2,ck3, etc.) and stores into a table. CREATE TABLE #temptest ( [intStep] [int] NOT NULL , [vchDisplayStep] [varchar] (19) COLLATE...
  11. sandylou

    Create Date Input Mask asp.net 1.1

    I would like to have on the front end a mask in a text box for a user to enter a date value. I already have validation on the text, but they now want a mask. Is there an easy way to do thi?
  12. sandylou

    1.1 DataList nested in a datalist

    i think i figured it out.. i looked at all of the values of e and realized that it was the e.Item.ItemIndex = -1 Thank you!
  13. sandylou

    1.1 DataList nested in a datalist

    I am not sure how I would check for null in vb. basically i am checking to see if the datalist is null? why would it be? i still am unable to find the datalist.. i says the referenced object has a value of nothing
  14. sandylou

    1.1 DataList nested in a datalist

    how would I check for null and if the row index = -1 in 1.1?
  15. sandylou

    1.1 DataList nested in a datalist

    it makes sense what you are saying, but can not find the control. I have tried this: <asp:DataList ID="dlstEmpInfo" Runat="server" OnItemDataBound="dlstEmpInfo_ItemDataBound" > <HeaderTemplate> <TABLE align="center" cellSpacing="5" cellPadding="0" bgColor="#9cbdde" border="2">...
  16. sandylou

    1.1 DataList nested in a datalist

    thanks jason, i think as in similar responses to you, i am missing something... i moved from traditional asp to asp.net using vb and i think you are using c#. I think i need to add the ItemDataBound event to my 'parent' datalist and then I should be able to find the control. I guess i am not...
  17. sandylou

    1.1 DataList nested in a datalist

    I did step through and it says it has rows, but when I try and find out anything about the dlstdatalist2 the object can not be found. It errors when i try to set the datalist datasource to my data reader. I am able to successfully populate the first datalist. Dim cmdData As SqlCommand...
  18. sandylou

    1.1 DataList nested in a datalist

    I have a datalist <asp:datalist id="dlstEmps" runat="server> <HeaderTemplate> Some Code... </HeaderTemplate> <ItemTemplate> Some Code.. <asp:datalist id="datalist2" runat="server> <ItemTemplate>some code..</ItemTemplate> </asp:datalist> </ItemTemplate> <FooterTemplate> Some Code...
  19. sandylou

    DataGrid dropdownList vb.net

    hmm.. i guess i can't get it right, do you have any links i can use to help with understanding the grid in 1.1 better and using vb.net?
  20. sandylou

    DataGrid dropdownList vb.net

    so i should do the setting of that ddl when the form initially loads that grid?

Part and Inventory Search

Back
Top