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

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

    CFIF for CFmail

    I have a coldfusion page that emails to some recipients. There is a <CfIF> that means that if a hidden field has a certain value based on a checkbox it will add the header information bto the email. The javascript works function TestChk(){ var checkbox =...
  2. sirnose1

    Filter by SysDate not working

    I have an SQL query that loads data from a link server that returns Oracle data but I am having trouble filtering by sysdate. When I dont filter all data is returned but I just need the data for the previous day. What am I doing wrong here? select S.* from openquery(LOTOS, 'SELECT RET_CD...
  3. sirnose1

    Disable dynamically generated input type = checkbox in table column

    I am working on a JavaScript function to disable all the dynamically generated html checkboxes in a table column. The little test function that I have works fine, but I need to be able to loop through and disable. It takes a paramter 'month' which is a number. The 'chk_xxx_month' is the...
  4. sirnose1

    Fileupload save to folder extension problems

    I have some code that uploads a document, renames the file based on the the concat of the year and a users id. (ex. "2014-9806543210"). It should overwrite the file no matter what the extension, so it could be stored as "2014-9806543210.xls" "2014-9806543210.xlsx", "2014-9806543210.docx", etc...
  5. sirnose1

    JavaScript needs to run if only if File exist

    I have a form where a user uploads an excel file, renames the file then checks to see if the file exist. If it doesn't exist it saves fine. I get the message to overwrite if it exist, but when I click on the OK button nothing happens. How do I make this work? Thanks, I could really use your...
  6. sirnose1

    Javascript needs to run fileupload if &quot;OK&quot; is licked for overwrite

    I have a form where a user uploads an excel file, renames the file then checks to see if the file exist. If it doesn't exist it saves fine. I get the message to overwrite if it exist, but when I click on the OK button nothing happens. How do I make this work? Thanks, I could really use your...
  7. sirnose1

    Need to Open a new window in onClick event from code

    I have this code that when "preview" is clicked, the email opens in a new window. That works fine. However when "Send" is clicked, the user gets a confirmation window that they will be sending an email and cant be undone. I need to open this in a new window. I have added target=_blank a...
  8. sirnose1

    UpdateProgress not working

    I have an application that uploads an excel spreadsheet to a gridview. The gridview is then loaded into a table in a database. That works fine, but the updateprogress control will not display. Any help would be greatly appreciated. Here is the asp.net code: <asp:Content ID="Content2"...
  9. sirnose1

    'The process cannot access the file because it is being used by another process' with FileUpload con

    The code does what I want when it first runs, moves data from spreadsheet to excel. However when I attempt to load it again using the fileupload control, I get an error "The process cannot access the file. because it is being used by another process." I have tried different things but it...
  10. sirnose1

    Want to prevent Menu items from wrapping in DIV

    I have a div in my master page for the top navigation menu. I need to display this all on one line but the text keeps wrapping. I have tried everything I now but its not working. Please help. Here is my code: CSS: #navigation { height:15px; background-color:#e2222f; padding:15px 0px...
  11. sirnose1

    Radchart Click event fires after 2 clicks instead of one.

    I have an ASP.Net web page that contains a RadChart. When an area of the chart is clicked, it opens a popup window with a radgrid populated with data from a stored procedure that fires after one click but takes an extra click in order to populate this grid. I am kind of new to the Web page...
  12. sirnose1

    Defualt button in different content on asp.net page

    I have a webform which has some textbox controls. When the user enters or edits the information, they can click the "save" button and results are saved. I want to use the enter button as the defaultbutton. Problem is is that I since the button is in another placeholder I cannot put it in the...
  13. sirnose1

    Cannot decrypt Connection String after encryption

    I used the command line tool to encrypt a connection string using the command: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -pef "connectionStrings" C:\inetpub\CIUI_Test_09052013 -prov "RsaProtectedConfigurationProvider" This worked fine. However on decryption I used...
  14. sirnose1

    Populate a popup window from radgrid row

    I am trying to populate a popup window with a value from a cell on a selected row. I am able to get the popup window to open, but the problem lies in that there are some rows with no ID associated, so I need to get the text in the cell by the index. How do I get the cell text into the popup...
  15. sirnose1

    CASE NULL value not returning case value

    I have a stored procedure that when executed returns some data and writes it to a temp table. Some of the data returns and empty string. I have implemented a case function to return the word 'NONE' if the value is empty or null. However it does not seem to work. The help will be greatly...
  16. sirnose1

    Dynamically add guid src to iframe

    Hi there. I am working on a single sign on solution that generate a guid. This guid will need to append to the address to complete the string. I dont believe it is working. Limited experience with iframes. I can generate the guid and save it to a lable control and then append there, howver...
  17. sirnose1

    Default submit buttons not getting focus when user clicks inside textbox.

    I have a form with 2 text boxes and two submit buttons. When I click in textbox1, the focus needs to be set to button1 and with textbox2, the focus needs to be set to button2 as the submit keys. I have been through the forums and they all say that this should work, however its' not working for...
  18. sirnose1

    Newbie has issue with Generics

    I am new to generics and I am currently having an issue getting a method to hold the values in the list. Keeps going to null when it goes to return. I have added the data to the list from the dataset and I can access the values with ItemArray, however uit keeps returning null. I cant find the...
  19. sirnose1

    Need to Reference a .Net dll in VBScript

    I have some code which searches the entire Domain forest for a user by email in Active Directory. I can do this in VB.net: Dim allDomains = Forest.GetCurrentForest().Domains.Cast(Of Domain)() Dim x As Integer = 0 For Each d As Domain In allDomains Dim email As String = "brian@test.gov" Dim...
  20. sirnose1

    Get user by email address from active directory

    I am trying to write some code which will search a a domain forest and find a user by thier email address. I can get it to find and loop through all the domains in the forest, but i cant get the results. Program says that the person is in all domains. Thier is an issue with my code. Please...

Part and Inventory Search

Back
Top