Search

You searched for the word(s): userid:11076

Matching Posts

  • Re: Images won't display

    Cool and you are welcome.
    Posted to Getting Started (Forum) by gdl on 11/3/2009
  • Re: Drop-Down list

    I might be wrong on how I interpreted your question, if so, please try to give more details. It looks like you need one dropdown list and then each option in the dropdown list will contain data from more than one column... is that correct? Please provide an example of your data to be displayed so we can help you better.
    Posted to Web Forms (Forum) by gdl on 11/2/2009
  • Re: Error Message

    Look at the next line (#12), do you have that form "fmAUTH" and page "/layertolayer.com/palletracksurplus/login.aspx" in your website. Check if forms authentication is correctly setup in your web application.
    Posted to Getting Started (Forum) by gdl on 11/2/2009
  • Re: Label text and redirect not changing to match new code; why?

    Have you tried restarting you IIS server? Try that and you'll probably see your changes.
    Posted to Getting Started (Forum) by gdl on 11/2/2009
  • Re: DropDownList or ListBox

    You are right about using a ListBox instead of a dropdown list. Now having said that, you will need to use a loop to get all the items selected from the ListBox. Once you have a list of those values, then you will use them as parameters in your SQL "WHERE" statement as follow: Select * from employee where userId = 123 and country in ('UK', 'US', 'CA') The above query will output all the records where the user id is 123 and the country is either UK, US and/or CA.
    Posted to Getting Started (Forum) by gdl on 11/2/2009
  • Re: Text Editor

    Both answers above are correct. However, you will have to implement some sort of saving mechanism to save your changes and then display them the next time you open the page with the text editor... it is not an easy task to do from scratch. I recommend you look at existing frameworks such as DotNetNuke that already include all of this functionality out of the box.
    Posted to Getting Started (Forum) by gdl on 11/2/2009
  • Re: Images won't display

    The path to your images is not correct. You can easily find out the path used when your application is running by righ-clicking on the x that shows up instead of the image and then select properties. This will show you the path. It is possible that you might need to add a "/" to the beginning of your path, like this: src ="/Images/Staff Photos/SP-AWJ.jpg"
    Posted to Getting Started (Forum) by gdl on 11/2/2009
  • Re: Print a gridview

    I have done this in the past by adding a button for users to "export" the grid contents to an Excel file where all the records are included and then the user can just print from Excel. This is very useful as the user can also sort, filter, etc... before they actually print it. Hope this helps.
    Posted to Data Presentation Controls (Forum) by gdl on 10/12/2009
  • Re: Problem with repeater and label

    That is interesting... I recommend you make the following changes and then test it: Remove the "Text" properties of both labels, right now you are setting them to Text="" Remove the .Items(index) part from your code, see example below: # 'the two labels Dim tempPartLabel As New Label tempPartLabel = Me.Repeater1.FindControl("partName") Dim tempPriceLabel As New Label tempPriceLabel = Me.Repeater1.FindControl("price") Hope this helps!
    Posted to Data Presentation Controls (Forum) by gdl on 10/12/2009
  • Re: Print a gridview

    Ok, if you want to actually print the gridview with controls and everything, then just set the gridview property "AllowPaging" to false programatically (don't forget to databind again) before calling the code to print the gridview. This will show a grid will all the records. You can then set the "AllowPaging" property to true in your code when the user completes this action to keep the paging.
    Posted to Data Presentation Controls (Forum) by gdl on 10/12/2009
Page 1 of 12 (117 items) 1 2 3 4 5 Next > ... Last »