Search

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

Matching Posts

  • Re: Track Ecommerce transaction with Google Analytics in Vb.net

    Hey Darrell, thanks for the reply. The link you provided seems very promising except i have to convert it to vb.net because i'm not c# person. However, this is the problem i'm getting when i using the string builder. It keeps saying (sb.AppendLine("</script>") : Only Content controls are allowed directly in a content page that contains Content controls. Can you shed more light on this. Thanks in advance.
    Posted to Web Forms (Forum) by penkye on 12/9/2009
  • Track Ecommerce transaction with Google Analytics in Vb.net

    Hi everyone, I've had some exposure to vb.net but i'm faced with a problem i'm not sure how to go about. I have read post and google searched for ways to track ecommerce transaction with google analytics in vb.net. I know how to accmplish this in regular asp but not asp.net. I some how need to execute the google tracking code during the post back event of the final submit order page. Any ideas or suggestions leading to figuring out this problem is greatly appreciated. So far this is what
    Posted to Web Forms (Forum) by penkye on 12/7/2009
    Filed under: ASP.NET, google ecommerce tracking, posbacktback event tracking
  • Re: Error: Looping through an xml twice instead on of once.

    Hi kavita, i'm not at this point trying to input any more data into the xml. i have the data that i need already and need to pass it to a process that will read and input the data into our system. For some strange reason when it loops through the selection node (item) it sort of loops twice and i don't know why?
    Posted to XML and XmlDataSource Control (Forum) by penkye on 7/3/2009
    Filed under: XML and XmlDataSource Control
  • Re: Error: Looping through an xml twice instead on of once.

    Hi Samu, I tried your suggestion but it some how still loops twice through the xml file. I'm not exactly sure what to do but i do well any suggestions or different approach to my problem. Thanks.
    Posted to XML and XmlDataSource Control (Forum) by penkye on 7/2/2009
    Filed under: XML and XmlDataSource Control
  • Re: Correct way to handle switch between non-secure(http) and secure(https) in vb.net

    Thanks for your suggestions Kervin, however with some help from other posts i was able to put A and B together to come up with something meaningful. Please feel free to comment on a simple or better approach to my delima. I wanted to make some pages secure and not others. I created a class Utility.vb made a call to it in the page load event which does the correct switching btwn http and https: Public Shared Function securePages() As String Dim isTye As Boolean Dim theURL As String = HttpContext.Current
    Posted to Security (Forum) by penkye on 7/2/2009
    Filed under: ssl 2.0, Secureand Non-Secure, http and https
  • Correct way to handle switch between non-secure(http) and secure(https) in vb.net

    Hi all, I can not thankyou all enough for your responses to my questions in the past. It has helped me understand and appreciate asp.net. However, i'm faced with a side of asp.net that i'm unfamilar with, "switching between http to https and vice-versa. This is my delima:some pages need to be non-secure like home.aspx, contact.aspx etc. But login.aspx, address.aspx, billing.aspx needs to be secure. Is there a way either in the webconfig file or some other place to specify what pages
    Posted to Security (Forum) by penkye on 7/1/2009
    Filed under: SSL, secure pages, non-secure pages
  • How to properly remove a start element in an xml + vb.net

    Hi all, I'm having a problem removing the startelement item from my xml file. The code below looks for the position within the xml file and updates that quantity and if my flag(myarray=1) then its suppose to delete that xml startelement. For s = 0 To m_nodelist.Count - 1 node( "Qty" ).InnerText = myArrayVal2(s) node( "subtotal" ).InnerText = myArrayVal2(s) * node( "price" ).InnerText If myArrayVal(s) = 1 Then m_nodelist.Item(s).RemoveAll() End If node = node.NextSibling
    Posted to XML and XmlDataSource Control (Forum) by penkye on 6/2/2009
    Filed under: XML and XmlDataSource Control
  • Error: Looping through an xml twice instead on of once.

    Hi All, I just stampled accross this weired behavior trying to loop through an xml file by selecting the appropriate nodes. I don't seem to understand why it does the whole for loop twice. Any help greatly appreciated. Dim xmlDoc As New XmlDataDocument Dim m_nodelist As XmlNodeList xmlDoc.Load( "D:\website\apphtml\da_beta\xml\" + iCookie + ".xml" ) m_nodelist = xmlDoc.SelectNodes( "/cart_item/item" ) Dim node As XmlNode = xmlDoc.SelectSingleNode( "/cart_item
    Posted to XML and XmlDataSource Control (Forum) by penkye on 5/14/2009
    Filed under: xml, XML and XmlDataSource Control, for loop
  • Re: Retrieve individual column value from a row sql query

    Thanks Naom for the clarification as well as answer to my problem. I have just a little thing to add though, the code from this link will suggest datatabe. Rows[0][0].ToString to retrive value which maybe works for c# but in vb.net in order to avoid getting "identifer expected error" use: datatable. Rows(0)(0).ToString. Thanks Naom. http://bytes.com/topic/net/answers/757037-c-app-how-navigate-through-records-dataset-datatable (answer in another forum)
    Posted to SQL Server, SQL Server Express, and SqlDataSource Control (Forum) by penkye on 5/1/2009
    Filed under: sqL datasource, sql queries, sqldataadapter
  • Retrieve individual column value from a row sql query

    Hi, I've learned quite a lot about asp.net from this forum but there seems to a little sql data retrieval process that's proves difficult for me. I know you can use sqlcommand.ExecuteScalar() to get the first row first column data value or sqlcommand.ExecuteNonQuery() and pass it to a dataset or sqldataadapter to fill a control object that takes a datasource. My question is, is there a way to retrieve the next subsequent row values: select product_nr, size, color, quantity, price from skumktg
    Posted to SQL Server, SQL Server Express, and SqlDataSource Control (Forum) by penkye on 5/1/2009
    Filed under: sqL datasource, sql queries, sqldataadapter
Page 1 of 3 (24 items) 1 2 3 Next >