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!

Recent content by ASPNETnewbie

  1. ASPNETnewbie

    ASP.NET/C# multiple forms workaround needed

    Do you mean you need to use the Wizard Control in ASP.NET To collect data on multiple Pages and THEN send it to server for processing? I did not really understand what you mean by the description you gave there but you can use a Wizard control and have it set to as many form(bad word to use in...
  2. ASPNETnewbie

    Fixing Format Exceptions without using Try Catch

    That basically fixed it. Thanks ASPNET
  3. ASPNETnewbie

    Fixing Format Exceptions without using Try Catch

    State.AB is already a string too. What I have though is this this.State.Items.Add(new ListItem(state.Ab,state.ID.ToString("d"))); I added the "d" for formating the information... is that right? I mean since the ID is an integer ASPNETNEWBIE
  4. ASPNETnewbie

    Fixing Format Exceptions without using Try Catch

    Sample of code causing error this.State.Items.Add(new ListItem(state.Ab,state.ID.ToString())); where State is an enumerated type
  5. ASPNETnewbie

    From Bytes to actual Image displayed on page

    Below is my code for a USPS Address Validator and Label Generator but the problem is it does not seem to be working at all and I can not seem to figure out what the problem is. For some reason... I can basically build and debug with no problem but when information is entered, nothing else...
  6. ASPNETnewbie

    From Bytes to actual Image displayed on page

    I have the code below for a handler. basically what I am trying to do is have the handler extract byte array information saved in Session variable. Process it and then output an image on my page when I set the imageURL of my ImageControl to the address of the handler. Is this not supposed to...
  7. ASPNETnewbie

    Fixing Format Exceptions without using Try Catch

    Does anyone know How best to deal with a FormatException Error without using a try catch Statement? AspNETNewbie
  8. ASPNETnewbie

    To Dynamically code delete button in Datagrid not to display if

    I finally figured the problem out. For some reason I was not using the right DLL or something. But it worked out great, thanks for your help @Benson Thanks a Whole lot ASpNEt
  9. ASPNETnewbie

    To Dynamically code delete button in Datagrid not to display if

    Nothing happens... I mean intellisense does not even pick up on e.item in the code behind AspNetNewbie
  10. ASPNETnewbie

    To Dynamically code delete button in Datagrid not to display if

    thanks. I finally figured out the logic for the code but I seem to be having one problem. I would like to shut off the particular control which is itself contained in an Itemtemplate <asp:TemplateField HeaderText="Rollover"> <ItemTemplate> <asp:ImageButton ID="DeleteThis"...
  11. ASPNETnewbie

    To Dynamically code delete button in Datagrid not to display if

    hey, I used the information you provided me and I know you are right about how I need to work this but I don't seem to be getting it right. what I have is this protected void FormatDelButton(Object sender, RepeaterItemEventArgs e) { if( (e.Item.ItemType == ListItemType.Item) {...
  12. ASPNETnewbie

    To Dynamically code delete button in Datagrid not to display if

    I was wondering how I would handle a situation where I have an imagebutton in my Datagrid code for my Delete button not to display if the status of information being displayed is true. How do I handle this If I already have my Delete button stored in the Datagrid template? AspNEtNewbie
  13. ASPNETnewbie

    Displaying consumed information in PHP

    I have to add this.. The code is complete and you can run it. information is returned from the call and contained in $xml, I would however like to know how I can access the details of the information in $xml and print it all out in the Loop their in the specified format. PHP Newbie
  14. ASPNETnewbie

    Connecting to USPS WebTOOl

    I am trying to contact the USPS web service to not only validate address but also print Labels directly from my site or my page but so far having problem getting the right information from the server. The code I have below when tested works for the text call but when I try to duplicate the same...
  15. ASPNETnewbie

    Displaying consumed information in PHP

    Hi, The code below is supposed to consume and display vacation rental information from http://api.vast.com/apidoc.php?a=ex but for some reason, I don't think I have it formated right to display. I want to have the pictures and values returned displayed in a formatted method and so far have not...

Part and Inventory Search

Back
Top