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: *

  • Users: jkl
  • Content: Threads
  • Order by date
  1. jkl

    Failed to start monitoring ...

    "Access denied to 'D:\Inetpub\wwwTEST2\registration\' directory. Failed to start monitoring directory changes." I have given full rights to the ASPNET user to the entire Inetpub directory. When I run "Check Server Extensions" there are no errors. I am running a total of...
  2. jkl

    Create my own spider??

    Is it possible to create my own spider, to read in the contents of an HTML page on another site, then regurgitate the contents of that page within my own site??
  3. jkl

    Urgent Oracle/SQL Query help

    In Ent. Mngr, I have an Oracle server as a Linked Server. When I execute a query such as "SELECT Total_Hours FROM Ora..Employees.TimeSheet"... ALL records in the recordset show as 0.00 If I change the query to "SELECT Total_Hours * 1 FROM Ora..Employees.TimeSheet&quot...
  4. jkl

    Datagrid, EditItem, TextBox JavaScript Focus Problem

    I have a datagrid with several items. When I click a link to "edit" an item, I want the focus of the page to be on the first textbox for that item, however this is not the case. When I click "edit", the page re-focuses to the top. Here's what I'm using to try to accomplish...
  5. jkl

    cookie reading/writing problem

    I'm getting the following error: [NullReferenceException: Object reference not set to an instance of an object.] It's referencing line 70 (indicated with ** below) in my codebehind: Dim newCookie As New HttpCookie("userInfo") newCookie.Expires = "1/1/2002&quot...
  6. jkl

    session variables

    Are session variables that are set in one application, available to another application, running on the same website?
  7. jkl

    EditCommandColumn

    how do i add a css class value to the links created in the ECC. i know i can add a &quot;class&quot; attribute, but that only applies it to the <td> cell that surrounds the generated <a> link. i want to add the &quot;class&quot; attribute to the <a> link itself. thanks.
  8. jkl

    textbox focus

    Is there a way to set the &quot;focus&quot; to a dynamically generated text box? here's the deal. i have a datagrid object, in which i have an &quot;edit&quot; link for each item. when the user clicks &quot;edit&quot;, the <edititemtemplate> is then used. however, the page is too long, and so...
  9. jkl

    hide datagrid header

    is there a way to hide the datagrid header.
  10. jkl

    CheckBoxListItem: Style Question

    I have a CheckBoxListItem listing all 50 states. I'm pulling out satet information from a sql db. I can get the data jsut fine, but what I want to do is change the color of the accompanying label if that state exists in the dataset. Is this possible?
  11. jkl

    EditItemTemplate and DropDown issue

    Here is my edititemtemplate <EditItemTemplate> <font class=&quot;Std&quot; color=&quot;#006600&quot;> <asp:DropDownList id=&quot;edtState&quot; width=&quot;30px&quot; runat=&quot;server&quot; /> </font> </EditItemTemplate> I want to be able to dynamicaaly fill this dropdown with a list of US...
  12. jkl

    DataGrid Edit/Update/Cancel poroblem

    I'm using a DataGrid object to return conatct information for members. The returned result is fine. I'm using an EditCommandColumn to make edits to the returned email and/or phone number. After making the changes to the text box and I hit &quot;Update&quot;, the original value of the cells is...
  13. jkl

    Terminal Server

    Can Terminal Server be set up to run on a box running win2k Pro and not win2k Server os? and if so, how?? thanks.
  14. jkl

    DataGrid HyperLinkColumn question.

    the HyperLinkColumn object is great, but is there any way to pass more than one datafield to the url? change this: DataNavigateUrlField=&quot;albumID&quot; DataNavigateUrlFormatString=&quot;albumDetails.aspx?id={0}&quot; to: DataNavigateUrlField=&quot;albumID&quot...
  15. jkl

    Help with using &quot;For...Next&quot;

    I want to create a set of HyperLinks which call a function, i.e. <asp:HyperLink onClick=&quot;myFunction('A')&quot;>A</asp:HyperLink> But I want to do this for the entire alphabet. Is there some way I can iterate through the letters using a &quot;For...Next&quot; statement to generate these links?
  16. jkl

    Condition statement using SQL data??

    I'm using a DataList object to display information from a SQL database to screen. I'm using several &quot;labels&quot; to display address information. I have 1 &quot;label&quot; for each line of the address (4 lines). Not all addresses have 4 lines of info. How do I do a conditional to check...
  17. jkl

    How do I pull out values from XML doc?

    The link below is a sample order feed that I receive. How do I pull out each of the values that are in this doc so that I can pass it through to my databse for order processing? http://www.urlencode.com/temp/order_sample.xml
  18. jkl

    Can't ODBC to SQL Server

    I have two different internal workgroups, one is on 192.168.0.1 subnet and the other is on 192.168.10.1 subnet. SQL Server is 192.168.0.110. I can connect to it via Enterprise Manager and ODBC from any webserver on the 192.168.10.1 network. I can connect via EM from any webserver on the...
  19. jkl

    Running SQL Server 2000 on Multiple IPs??????

    I have one SQL Server 2000 machine running both a public website and an the internal management website. There SQL server has 2 nics, I want to be able to connect to the server using both nics, one for public site and one for internal site. It runs fine on the 1st nic, with the original IP...
  20. jkl

    Stored Procedure INSERT Help??

    I'm new to Stored Procedures. This is kind of what I want to do: ======================================= DECLARE @iCount int iCount = 0 SELECT DISTINCT Title FROM newMovies WHERE isNew = 1 ?? assign the value of each Title to a variable (i.e. newTitle) IF NOT EXISTS (SELECT tableID from...

Part and Inventory Search

Back
Top