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: M8KWR
  • Order by date
  1. M8KWR

    Update Panel and Javascript

    Hi I am not so good with javascripts. I have a page where I have added reference to javascript file eg <script src="../js/custom.js"></script> I have an update panel that I need to refresh, but in there is elements that rely on the above JavaScript file to render chart controls etc - but on...
  2. M8KWR

    Get Facebook Email Address

    Hopefully the right section to post this question! I am using the following script <script> window.fbAsyncInit = function () { FB.init({ appId: 'XXXXXXXXXXXXXXXXX', // App ID status: true, // check login status cookie: true, // enable cookies to...
  3. M8KWR

    Displaying Properties on a page

    resolved it I forgot to use Databind() I knew it was something simple :)
  4. M8KWR

    Displaying Properties on a page

    Hopefully a simple questions I have got a property Public ReadOnly Property Test() As String Get Return "Hello World" End Get End Property I am trying to display this on webpage by using <%# Test.ToString%> But it is not working. Any help/assistance...
  5. M8KWR

    C Sharp masterpage code not running twice

    Hi No, I am not doing any of that! I have simply got code in the page_init of the masterpage, but every time I run a page that uses this masterpage, the code does not run (only the first time the website is loaded)
  6. M8KWR

    C Sharp masterpage code not running twice

    Hopefully a simple one! I have some code on the page_load on the masterpage. I need this to run everytime a page using the masterpage is loaded; but this code only seems to run once! What can I do to fix it many thanks
  7. M8KWR

    Pass Database Name to a Function and setting the database to query

    Many thanks for this, i will give it ago :)
  8. M8KWR

    Pass Database Name to a Function and setting the database to query

    Thanks for this, but it will not execute, i am getting this error message Only functions and some extended stored procedures can be executed from within a function.
  9. M8KWR

    Pass Database Name to a Function and setting the database to query

    I need to pass 2 parameters to a function, one with be a guid I use to query a table to get the database I need to look in, then other will be another guid value I need to find the description of. I am trying to do something like this: Create Function [dbo].[get_Description] (@DB_GUID...
  10. M8KWR

    SQL Nested Select Statements - Combining Queries

    PHV - that is brilliant - many thanks Another quick one, if you do not mind. I have this sql statement, that I am trying to count the company_guid values SELECT DISTINCT dbo_Campaign_Data.Company_Guid FROM dbo_Campaign_Data INNER JOIN dbo_Campaign ON dbo_Campaign_Data.Campaign_Guid =...
  11. M8KWR

    SQL Nested Select Statements - Combining Queries

    after clicking ok to error, it then highlights the SELECT of the sub query!
  12. M8KWR

    SQL Nested Select Statements - Combining Queries

    I get the error of "Syntax error in FROM clause" Many thanks
  13. M8KWR

    SQL Nested Select Statements - Combining Queries

    I am trying to combined to queries. This is my first SELECT dbo_Campaign.Campaign_Name, dbo_Drop_Downs.Description, dbo_History.History_Guid, dbo_Drop_Downs.Order_Value FROM (dbo_Campaign INNER JOIN dbo_History ON dbo_Campaign.Campaign_Guid = dbo_History.Campaign_Guid) INNER JOIN...
  14. M8KWR

    Postback not fetching correct data

    Hi, I have a webpage with 1 textbox, which is populated onload, with "TEST DATA" this is changed to "NEW DATA" on a button click (in code), when querying the textbox text value, it returns "TEST DATA", and not "NEW DATA" which it has been changed to. I am unsure what is going on. Any help...
  15. M8KWR

    Importing, Exporting and Cross Referencing data

    This is a complete newbie questions, so excuse me if its been answered before; just looking for a very quick answer, and this is the best place for that, without me speaking to sales people trying to sell me a solution. What is the best way to export data, change this data, and then import it...
  16. M8KWR

    Style Background image ontop of image

    I have a table cell which I am applying a style to. This style has a background image. Then I require another image going into that same tablecell. But what I am looking to do is make the tablecell style's background image be ontop of the image that I put into the cell. The reason for this I...
  17. M8KWR

    Dynamically create table from other tables.

    Sorry, will try again... Fields table. Campaign_ID Table FieldName 1 Campaign Field1 1 Campaign Field2 1 Campaign Field3 2 Campaign Field1 2 Campaign Field2 3 Campaign Field3 The data is stored...
  18. M8KWR

    Dynamically create table from other tables.

    Sorry, I thought I had re-read my questions... In the fields table there is no Contact_ID column. Just the field information for a given campaign. And then in the campaign information it holds the campaign answer for x number of contacts. So the campaign_id would get the fields that are used...
  19. M8KWR

    Dynamically create table from other tables.

    Hi, Unsure how to explain what I am trying to achieve, so please bare with me. I have a table containing field information that are against certain internal campaigns. We use this to display the fields on our internal crm. What I am now trying to do is use this information within this table...
  20. M8KWR

    SQL Function, splitting text into individual rows (output)

    many thanks for all your help, finally sorted it.

Part and Inventory Search

Back
Top