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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by M8KWR

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

Part and Inventory Search

Back
Top