Search

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

Matching Posts

  • formatting money

    I need to show the .00, but the following code wacks it String.Format("{0:#,###,###.##}", sumVal) I get 9,000,000 when the number should be 9,000,000.00
    Posted to C# (Forum) by helixpoint on 12/23/2009
  • cookie from a class

    How do you read a cookie from a c# class?
    Posted to State Management (Forum) by helixpoint on 12/8/2009
  • Re: cookie from a class

    What is the namespace for that?
    Posted to State Management (Forum) by helixpoint on 12/8/2009
  • which linkbutton pushed

    How can I tell which linkbutton was selected when page load has fired?
    Posted to Web Forms (Forum) by helixpoint on 12/4/2009
  • Re: which linkbutton pushed

    Can't use that. I need another way
    Posted to Web Forms (Forum) by helixpoint on 12/4/2009
  • how to get 2 values in one proc??

    I was hoping to do this in one proc. Here is the proc. The code to retrieve one value is below that. How do I bring back 2 outputs? CREATE PROCEDURE [dbo].[getReviewCountSum] -- Add the parameters for the stored procedure here @RecipieID INT , @count int OUTPUT, @ratingNo int OUTPUT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; SELECT @count = COUNT(*) FROM Reviews WHERE (RecipieID = @RecipieID) SELECT @ratingNo = SUM(Stars
  • find a DIV in a repeater??

    I need to do this in the Itemdatabound event. I need to change the class attributes of the div. Dave
    Posted to Data Presentation Controls (Forum) by helixpoint on 11/24/2009
  • Trying to build simple menu

    I want to have a menu like..... link1 | link2 | Link3 The code below gives me...... link1link2link3 | private void loadcategories() { IDataReader IDR = DataMain.GetCategories(); LinkButton MyButton = new LinkButton(); Literal MyLiteral = new Literal(); while (IDR.Read()) { LinkButton MyButton1 = new LinkButton(); MyButton1.Text = IDR[1].ToString(); MyButton1.CommandName = IDR[1].ToString(); MyButton1.PostBackUrl = "alkaline-recipes.aspx?cat=" + IDR[0].ToString(); PlaceHolder2.Controls.Add
    Posted to Web Forms (Forum) by helixpoint on 11/23/2009
  • Do you see something I don't

    When I run the SP in Access, it give the the right number, but when I pass in the params, I get 0. The correct values are passed to the function Function GetIMSectionMonthlyUnfilledCustomerOrders(ByVal IMCodeVal As String, ByVal JulDate As String) As Object cnn = myConnection.ConnectToRsnfMetrics Dim paramIMCodeVal As New OleDbParameter() Dim paramJulDate As New OleDbParameter() With paramIMCodeVal .ParameterName = "IM_CD1" .OleDbType = OleDbType.VarChar .Size = 4 .Value = IMCodeVal End
  • array acting strange

    The arrayList has all the same values. It ends up being the last record that comes back? cnn = myConnection.ConnectToRsnfMetrics cnn.Open() cmdSel.Connection = cnn Dim command As New OleDb.OleDbCommand("EXECUTE ProcGetIMCountryVals", cnn) datRead = command.ExecuteReader(CommandBehavior.CloseConnection) Dim values() As String = New String(datRead.FieldCount - 1) {} Dim al As ArrayList = New ArrayList If datRead.HasRows Then While datRead.Read Dim j As Integer = 0 Do While (j < datRead
    Posted to Web Forms (Forum) by helixpoint on 11/6/2009
Page 1 of 45 (445 items) 1 2 3 4 5 Next > ... Last »