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 TouchToneTommy 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: rac55
  • Content: Threads
  • Order by date
  1. rac55

    Slide Show

    Hi I am trying to create a slideshow whcih works when referencing jpgs or gifs in the array. However I need to reference <script type="text/javascript" src="http://www.weatherzone.com.au/woys/graphic_forecast.jsp?postcode=4000"></script> instead o images/test.gif e.g. var pictures = new...
  2. rac55

    Setting panel to visible

    Hi I am trying to refernce an invisble panel and a %# DataBinder.Eval(Container.DataItem, "Department") %> is equal to a specific department then display the panel. the code is ; <panel id="pnlName" visible="false" runat="server"> <td...
  3. rac55

    Finding out who checked a checkbox

    Hi I have 4 checkboxes, and only four users should be able to select a checkbox each. All the users are stored in a table in the database. I have flagged each user with 1 or 0 depending on whether they should be able to check a checkbox. Does anyone have any ideas how to do this? Any help...
  4. rac55

    Validate a dropdownlist

    Hi Does anyone know how to validate a dropdownlist? Thanks
  5. rac55

    Dropdownlist - selected value

    Hi I have a dropdownlist that is populated from the database. It contains a list of departments. When a user selects department Production, I need a textbox to be displayed. So I need the dropdownlist to be passed to a function and then to javascript. Does anyone have any ideas how to check...
  6. rac55

    Display from datalist

    I have a datalist with the following items: a. b. c. I need to be able to pull b in an if statement. What property can I set to make that happen? I have been trying datalistname.items.value but this isn't allowed in a datalistitemcollection. any ideas? Thanks
  7. rac55

    Display a texbox

    Hi Does anyone know the how to display a hidden textbox using the javascript onclick event ona html button? Thanks Rachel
  8. rac55

    SQL query

    Hi I am trying to pull information from a database using a sql statement. I need pull where region=all...but I do not know the syntax for this. The sql is; SELECT * FROM tblEmployee INNER JOIN tblSignatures ON tblEmployee.MngDir = tblSignatures.MngDir WHERE...
  9. rac55

    Session and datagrids

    Hi Does anyone know how to add a session to a datatgrid? I have a shopping basket and each time a user selscts an item, the item id is passed a session, but it is only holding one value. I have tried numerous ways but can't seem to get it working. My code is; Session("ItemID") =...
  10. rac55

    Setting colours in datagrid

    Hi Does anyone know how to set certain columns in a datagrid to a different colour? Basically I need to set set the column 'result' to red when it is a a certain value ie. pass or fail My code is; <asp:DataGrid id="MyDataGrid" runat="server" align="center" BorderWidth="5px" Cellpadding="5"...
  11. rac55

    Null values in sql server

    Hi I am importing an excel spreadsheet into tables in a sql server database using dts. I have one row of information filled out in the excel spreadsheet, but when the dts runs, it imports the information plus 5 extra rows filled with nulls ino the table. Does anyone know how to fix this...
  12. rac55

    asp.net and dts

    Hi Does anyone know how to invoke a dts from asp.net web page? My code is; Sub BtnUpload_click(Sender As Object, E As EventArgs) Dim opkg As New DTS.Package Dim sServer As String Dim sPackageName As String, sMessage As String Dim sUser As...
  13. rac55

    Multiple tables

    Hi I am trying to import an excel spreadsheet into a sql server database. The problem is I need the information in the spreadsheet to be imported into 3 different tables. I thought of transfering all details into a temporary table and then setting 3 triggers for each transfer of information...
  14. rac55

    dweb matrix dll

    Hi Does anyone know what the dll extension is in web matrix to protect files other than aspx? I have tried aspnet_isapi.dll...but it cannot be found when I browse and also the 'ok' button is diasbled...I am using windows XP. Any help would be greatly appreciated Thanks Rachel
  15. rac55

    Body of email

    Hi I am trying to put html tags in the body of an email for formatting purposes...but it is just writing the tags as text to the email...does anyone have any ideas what I am doing wrong? Code is; Dim objMM as New MailMessage() objMM.To = iGridItem.Cells(iCol).Text...
  16. rac55

    Role based login

    Hi I am having a problem with role based forms authentication...basically I have two login pages...user and admin, with the user gaining access to only secure areas and admin everywhere including admin section. I have one web config file. Once logged in, a user is given its role depending if...
  17. rac55

    Invisible datalist

    Hi Does anyone know how to set a datalist to invisible...my code is; <ASP:DataList id="ExpiryDate" runat="server" align="center" font-size="Small" RepeatDirection="Horizontal" RepeatColumns="1" visible="false"> <ItemTemplate> <%#...
  18. rac55

    Date comparsions

    Hi Does anyone know how to compare a date in a dataset to todays date? My code is; myDate=DateTime.Now() Dim MyConnection As SqlConnection = New SqlConnection("server=(local); trusted_connection=true; database=ExamResults") MyConnection.Open() Dim MyDataCommand As...
  19. rac55

    Checking information in dataset

    Hi I am trying to check the database to see if there is a value year = '2004'...does anyone have any ideas how to do this? Code is; If DS.Tables("tblExpiryDate").Rows.Count > 0 Then rsExpiry.DataSource = DS rsExpiry.DataBind()...
  20. rac55

    asp.net and dts

    Hi Does anyone know how to invoke a dts from asp.net web page? I have searched the internet but cannot find any examples. Any help would be greatly appreciated Thanks

Part and Inventory Search

Back
Top