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!

Search results for query: *

  • Users: ASPNETnewbie
  • Order by date
  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...
  16. ASPNETnewbie

    Connecting to USPS WebTOOl

    This program is supposed to collect at the needed data from my ASPX Form and transmit the information to the USPS API which in turned returns the information for printing out a Label but it seems not to work and I would appreciate it if someone can help please... ASPNETnewbie using System...
  17. ASPNETnewbie

    SFTPFILE... where is it located??

    Has anyone used the SFTP class for FTP programming? I would like to know what these public members of the class ACTUALLY do in layman's terms. I have seen different versions and I am sort of confused as to what it is exactly they do. GetDirListing GetFileSize GetNameListing thank you...
  18. ASPNETnewbie

    Problem compiling DLL file using multiple header files and source file

    I have some source files in different folders and headers files as well that I would like to use to compile a DLL file but I keep running into problems ( errors) that I need help with. fatal error C1083: Cannot open include file: 'winhttp.h': No such file or directory...
  19. ASPNETnewbie

    Dynamically take apart and put together Flash file

    I tried Using string literals but for some reason, this does not work for me and I was wondering if someone could me understand my mistake. obj="<object id="FC_2_3_Column3D" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" "...

Part and Inventory Search

Back
Top