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

  1. andym0908

    Using ISNULL isn't working in SQL Server 2005

    Thank you very much.. makes perfect sense!
  2. andym0908

    Using ISNULL isn't working in SQL Server 2005

    Hi all I have 2 tables. One called 'members' and the other called 'addresses'. Naturally there are members that are linked to addresses, it's quite simple. I'm using a simple query to pull 2 fields from my members table which also should pull back around 6 fields from the addresses table...
  3. andym0908

    Help with webservice

    Ok I think I fixed it. I had the wrong class name in the <@ declaration at the top of the page! The class name is ProductData, not PDUK!
  4. andym0908

    Help with webservice

    No errors in Visual Studio, but the drop down is showing the error "Method Error 500"...
  5. andym0908

    Help with webservice

    Ok, still having problems. I'm getting a Method Error 500 here, and I have no idea why. I'm simply developing this web app locally, although the db is remote. Here's the Ajax control (CascadingDropDown) code from my .aspx file (yes, I have the script manager on the page, and it's also a...
  6. andym0908

    Help with webservice

    So, the ASMX file is the actual Webservice? If so, the namespace value would be pointing to itself? Right now, my project is just being run from within the Visual Studio 2008/Websites folder... is this a path I would reference?
  7. andym0908

    Help with webservice

    Hi I'm using .NET with the Ajax Control Toolkit, and I'm trying to get working the CascadingDropDown control. Unforunately, to get it working via a SQL database like I need it to, it needs to use a webservice... and this is a new thing for me. In VS I've created a .ASMX file (the web service...
  8. andym0908

    Can't find the file?!

    Hi No it wasn't excluded. I just figured out that the page had a <form> tag in it, and the master page has a <form> tag too. What's the deal with form tags? I wanted to have a content page with a login area, and for this, wouldn't I need a separate form tag??
  9. andym0908

    Can't find the file?!

    Hi I have VERY simple project right now. But, strange thing happened - I created a new ASPX page (and it's associative .cs code behind file). For some reason, the application can't find the page. The file is in the normal place (root) of the project!! Very odd... Why on earth would the...
  10. andym0908

    How to track website users logged in

    Hi all This is just a general query. I have built websites before in classic ASP, where users are kept logged into a website by using the session object. Now I'm making the transition to .NET (C#), I'm wondering if I can still use the same session object, and if so, is it wise/secure to use...
  11. andym0908

    Strange problem...?

    Hi Rob Well, good point - but I'm just getting into .NET (after a long period of intimidation by it!). What's the use, then, of a HyperLink control?
  12. andym0908

    Strange problem...?

    Ahh.. I kinda missed that - using ' instead of " ! I think I did notice it, but it didn't register to me! Much gracious to you Mark, and Jason!!
  13. andym0908

    Strange problem...?

    Ok, here's my HTML: <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">...
  14. andym0908

    Strange problem...?

    I'm puzzled by this, it should be a piece of cake! The Repeater control is bound to the stored proc, according to the code behind... Why would I need to get a reference to the hyperlink? This doesn't seem to be a reason why the server tag is showing on the client end source... Please check...
  15. andym0908

    Strange problem...?

    Ok, where do I go to change these properties? This is really strange, because this is a brand new project, very simple (so far). Why on earth would the server tags render on the client end..? FYI, the code-behind code (below) is used to just bind a stored procedure (via data Table Adapter) to...
  16. andym0908

    Strange problem...?

    Hmm fair point which I didn't know. However, the change doesn't make a difference to the problem I'm having...
  17. andym0908

    Strange problem...?

    Oh, here's the View Source ... also, I'm using MasterPages - that shouldn't have any effect should it!?! <div style="text-align:center"> header <br/> <asp:HyperLink Text="Home" NavigateUrl="default.aspx"...
  18. andym0908

    Strange problem...?

    The NavigateURL property is set... Also, I have pasted the code below: <asp:Repeater ID="rptSiteMenu" runat="server"> <ItemTemplate> <asp:HyperLink Text="<%#DataBinder.Eval(Container.DataItem,"title")%>"...
  19. andym0908

    Strange problem...?

    I've just started using .NET (C#). I've got a simple horizontal text display, using the <asp:HyperLink> control, which is databound to a SQL Stored proc. When I run it, the text displays, though only as normal text, not Hyperlink text. Also, more worryingly, when I View Source in the browser...

Part and Inventory Search

Back
Top