User Profile

Collapse

Profile Sidebar

Collapse
Meganutter
Meganutter
Last Activity: Mar 1 '10, 08:32 PM
Joined: Mar 3 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Well i found out that viewing the asmx file in the browser has updated the code in the webservice.
    See more | Go to post

    Leave a comment:


  • My Webservice is hosted in IIS, i publish it TO IIS
    i found out that when i click "view in browser" on the asmx file that it does update then.
    See more | Go to post

    Leave a comment:


  • Meganutter
    started a topic [VS2k8] Web Services keep using old code

    [VS2k8] Web Services keep using old code

    Hi all,

    i'm having a really bothersome problem, i am currently building a web service and are testing it using a windows forms application. The problem is however, any changes to the code in the web service does not get reflected into the test application. I tried the following with no results.

    - Rebuild webservice
    - Update reference
    - Clean, build
    - Remove Temporary ASP.NET files
    - Remove...
    See more | Go to post

  • Meganutter
    replied to two questions: 1) Joins 2) Selects
    Thank you for your explanation, i think i understand now.
    See more | Go to post

    Leave a comment:


  • Meganutter
    replied to two questions: 1) Joins 2) Selects
    Yes thank you, it works.

    can you explain me why the b.Username and c.Username should be used instead of the normal Users.Username. I managed to adapt the query to work for me but i would like to know why.
    See more | Go to post

    Leave a comment:


  • Meganutter
    replied to two questions: 1) Joins 2) Selects
    Thank you for your reply,
    i did notice that nr. 1 got duplicates when the collums LastPostedBy and User_ID (the starter) were different but both duplicates showed the same results.

    How would a Query look if i wanted to join those two together? i just got used to writing simple joins so this one is a little over my head
    See more | Go to post

    Leave a comment:


  • Meganutter
    started a topic two questions: 1) Joins 2) Selects

    two questions: 1) Joins 2) Selects

    Hello.

    I would like to ask the following questions, i have tried searching but didnt get any more info on them. I am building a forum from scratch and am stuck with these points.

    1) I have a Join as shown here, is it possible to get another value from the Users table using another collumn from the Topics table?
    I tried another INNER JOIN but it just duplicated the results which i dont want

    Topics.LastPost edBy...
    See more | Go to post

  • Meganutter
    replied to Detecting leave page
    hmmm, the PostBack gave me an idea.
    to check for the variable on initial load, and then destroy it. skipping this check on postback.
    if that doesnt work i might have to resort to JavaScript (which i dont really have any knowledge of)

    Thanks for the reply
    See more | Go to post

    Leave a comment:


  • Meganutter
    started a topic Detecting leave page

    Detecting leave page

    Hello,

    im making a forum and stumbled upon the following problem.
    i want to detect when a user leaves the page, when the user leaves the page i want to null a Session variable.
    I am doing this in the Admin control panel, this will have an extra login which will create an AdminAuth Session variable. when the user navigates off the page it will remove that variable. The page uses Webcontrols to display various aspects thus...
    See more | Go to post

  • Meganutter
    replied to Questions about Foreign Keys
    Thanks for your reactions, using Pankajs query i was able to crop some queries together.
    i just pasted the entire thing and slimmed it down till i got what i needed, i cant write joins just yet, but i am capable of manipulating it
    See more | Go to post

    Leave a comment:


  • Meganutter
    started a topic Questions about Foreign Keys

    Questions about Foreign Keys

    first of all, these are my first steps into SQL world so please dont shoot me.

    I have looked around to find answers to the following questions but had no luck so far:

    When querying a table with a foreign key, will its linked data also be shown?
    if not, how could i adjust that query to show its matching row of the other table?

    I am trying to make a forum (just for fun and learning) and have a database...
    See more | Go to post

  • Meganutter
    started a topic getting DIVs to use remaining 100%

    getting DIVs to use remaining 100%

    Hello,

    i am having some troubles with DIVs.

    heres my setup

    i have a wrapper, 900px wide 100% height
    nested header 100% wide 20px high
    nested menubar 100%wide 80px high

    now i want to use the 100% remaining (100% page - 100px) in a content wrapper. any idea how i may achieve this?

    all the comments are dutch, my apologies. they just explain the functions
    ...
    See more | Go to post

  • Meganutter
    replied to c# reading XML node quickest way...
    ddlTools is a dropdown list in the application, the parts that matter are the foreach loops mostly.

    basically it checks wether the XML value is the same as the selected value of that dropdown menu.
    See more | Go to post

    Leave a comment:


  • Meganutter
    replied to Cross-Language classes problem
    *edit*
    just went to get more info about the project
    seems like i dont need to rewrite the core which makes this unnecessary. thank you for your time
    See more | Go to post

    Leave a comment:


  • i had this run in as well a while ago, one of the reasons i think is the parameters in asp like
    people can use www. as a prefix for something else as well, hence the http:// (or ftp://) will make it see as an external website.

    if you have something in which you can enter the field and store it you can do a check to see whether the user entered http://
    See more | Go to post

    Leave a comment:


  • i have had occasions where it didnt figure it out, however, one can never be too safe right?
    See more | Go to post

    Leave a comment:


  • the Gridview tries to locate the website locally unless there is http:// in front of the url, just www. doesnt really work
    See more | Go to post

    Leave a comment:


  • Meganutter
    started a topic Cross-Language classes problem

    Cross-Language classes problem

    Hello all,

    Due to some Typing Complications Using C# i am forced to use some VB.NET code to get some data. i will describe the problem as good as i can

    I have an object from a dll (3rd party, non editable, Probably VB) lets call that A
    A has a few properties, one of them is Read only (COM)Object B

    B is shown in my tooltip when i hover above it that its a (COM)Object of type B
    Object explorer...
    See more | Go to post

  • Meganutter
    replied to COM class error 80040154
    follow up:

    i fixed the problem, i was creating a new object. in the old code a new instance of the object is never made but filled when used.
    somehow it didnt like the new() statement.
    See more | Go to post

    Leave a comment:


  • Meganutter
    replied to COM class error 80040154
    hi thanks for replying, i just tried your points.

    Uninstalling and Reinstalling didnt work, all dll files and the commands gave "entry point not found" whether it was install or uninstall.
    I made sure the everyone user has full control on the folder and even done quite "agressive" and made everyone part of administrators.

    the OS is 32bit Win2k3 Server

    thank you for your time
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...