Search

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

Matching Posts

  • Re: Repeating Soap Node

    Actually I made changed it from structures to classes and defined the list as new list what did the job Public class service Public servicename As String Public turnaround As String Public netrate As Decimal Public markups As New List(Of markups) End class Thank you for your help
    Posted to XML Web Services (Forum) by mi32dogs on 9/1/2009
  • Re: Repeating Soap Node

    Thank you, that works great. But I have one more question (sorry I’m a classic ASP guy that is trying to get into .net) now I like to use it also for the return soap string , so I create a structure for this as well Public Structure quotereply Public quote_info As quote_info Public DTDreply As List(Of service) End Structure Public Structure quote_info Public status As String Public quoteid As Integer Public quotedate As Date Public webquote As String Public version As String End Structure Public
    Posted to XML Web Services (Forum) by mi32dogs on 8/29/2009
  • Re: Repeating Soap Node

    I do not really know what you mean. What I try to do is get a list within a list I have the service & markup Structure Public Structure service Public servicename As String Public turnaround As String Public netrate As Decimal Public markups As List(Of markups) End Structure Public Structure markups Public name As String Public rate As Decimal End Structure Then I create new instants of them Dim Ser As New service Dim Mark As New markups I add some values to the markups instance Mark.name = "baseRate"
    Posted to XML Web Services (Forum) by mi32dogs on 8/29/2009
  • Repeating Soap Node

    I have a question I need some help with, I’m creating a shipping web service where I need to get multiple parcels in like this: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetDTDPricing xmlns="http://Myship.org/"> <authentication> <key>string<
    Posted to XML Web Services (Forum) by mi32dogs on 8/27/2009
  • Pre-populate repeater textbox

    Hi, I have a question, I’m building a shipping section and I need to build a dynamic parcel form where you can input the parcels that you like to ship. I thought it would be nice to start off with one parcel with a button below it to “add a parcel” to add a second set of form fields I got this done with a repeater and it work fine to add a set of form fields, the problem that I have is that if you “add a Parcel” I can’t find a way to pre-populate the parcels that somebody already filled in I’m new
    Posted to Data Presentation Controls (Forum) by mi32dogs on 10/13/2007
  • Re: loop through dynamic form fields

    Thanks for all the help
    Posted to Web Forms (Forum) by mi32dogs on 12/30/2006
  • Re: loop through dynamic form fields

    Ok, I found the problem i use master pages so i have to use Dim ShowID As DropDownList = DirectCast (Master.FindControl( "Content" ).FindControl(controlName), DropDownList) I found this http://west-wind.com/weblog/posts/5127.aspx
    Posted to Web Forms (Forum) by mi32dogs on 12/30/2006
  • Re: loop through dynamic form fields

    I tried it with Me.FindControl but i get the same error I also tested ShowID1 to see if it is Nothing but if i use ShowID1.Text i get the value so thats fine I'm not sure why it is not working
    Posted to Web Forms (Forum) by mi32dogs on 12/30/2006
  • Re: loop through dynamic form fields

    Hi Thanks but if do this i get a "Object reference not set to an instance of an object." Error This is part of the script For Z = 1 To 12 Dim controlName As String = "ShowID" & Z.ToString Dim ShowID As DropDownList = DirectCast (Page.FindControl(controlName), DropDownList) controlName = "Onsale" & Z.ToString Dim Onsale As CheckBox = DirectCast (Page.FindControl(controlName), CheckBox) controlName = "PreStart" & Z.ToString Dim PreStart As BasicFrame.WebControls.BDPLite = DirectCast (Page
    Posted to Web Forms (Forum) by mi32dogs on 12/30/2006
  • loop through dynamic form fields

    Here is my problem I have a form with 12 rows with all the same fields (row 1 has textbox1, checkbox1, etc.. Row 2 has textbox2, checkbox2, etc..) If the form gets submitted I like to loop through the form data but how do I call the form data for example checkbox+Z.Checked dos not work in JS you can use eval() but that dos not work For Z = 1 To 12 If checkbox+Z.Checked Then ‘Do something End If Next
    Posted to Web Forms (Forum) by mi32dogs on 12/30/2006
Page 1 of 2 (11 items) 1 2 Next >