Search

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

Matching Posts

  • Re: SUCESS!

    I can't get the update to work with a Stored Procedure but I can get it to work when I code the SQLDataSource update text. This works - <asp:sqldatasource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:AtlasLabConnectionString %>" SelectCommand="GetTasks" OldValuesParameterFormatString="original_{0}" SelectCommandType="StoredProcedure" UpdateCommand="update Task set Priority = @Priority where ID = @original_ID" UpdateCommandType="Text"> <updateparameters>
    Posted to ASP.NET AJAX Control Toolkit (Forum) by JakeJeck on 5/24/2006
  • Re: Gridview Row Color Change

    Well I settled on just changing the bgcolor of each cell. Just as effective I guess. Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound If e.Row.RowType = DataControlRowType.DataRow Then If e.Row.Cells.Item(1).Text = Request.QueryString("to") Then For x As Integer = 0 To e.Row.Cells.Count - 1 e.Row.Cells(x).BackColor = Drawing.Color.LightSteelBlue Next End If End If End Sub Setting the cell border
    Posted to Data Presentation Controls (Forum) by JakeJeck on 11/15/2005
  • Gridview Row Color Change

    I can get an individual cell to change color but not the whole row. The commented code works for a single cell but I want to highlight the entire row. Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound If e.Row.RowType = DataControlRowType.DataRow Then If e.Row.Cells.Item(1).Text = Request.QueryString("to") Then e.Row.BorderStyle = BorderStyle.Solid e.Row.BorderWidth = New System.Web.UI.WebControls
    Posted to Data Presentation Controls (Forum) by JakeJeck on 11/15/2005
  • MSN.com is down

    Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration
    Posted to Free For All (Forum) by JakeJeck on 11/3/2005
  • Re: ObjectDataSource parameter in ASP.Net 2.0

    An example on how to do what Luis said - < asp : ObjectDataSource ID ="ObjectDataSource2" runat ="server" DataObjectTypeName ="Manufacturer" InsertMethod ="Save" SelectMethod ="GetManufacturer" TypeName ="Manufacturer" UpdateMethod ="Save"> < SelectParameters > < asp : ControlParameter ControlID ="GridView1" DefaultValue ="-1" Name ="MfgID" PropertyName ="SelectedValue" Type ="Int32" /> </ SelectParameters > </ asp : ObjectDataSource > It calls the Getmanufacturer method
    Posted to Data Presentation Controls (Forum) by JakeJeck on 10/31/2005
  • Re: objectdatasource and nested objects

    Does anyone have an easy solution for this? We have a "Category" object that has a "HTMLMetaData" object as a property. I can't get properties of the subobject to bind: Parser Error Message: A call to Bind was not well formatted. Please refer to documentation for the correct parameters to Bind. Line 103: <asp:Label ID="HtmlMetaDataLabel" runat="server" Text='<%# Bind("HtmlMetaData.Description") %>'> Line 104: </asp:Label>
    Posted to Data Presentation Controls (Forum) by JakeJeck on 10/28/2005
  • FormView - disable edit button unless a row from gridview is selected

    I have a basic formview and a gridview where selecting a row in the gridview populates the formview for editing or inserting a new row. The only problem I have is when the page initially loads the edit button can be clicked even though it's not editing an existing record. Is there a workaround for this?
    Posted to Data Presentation Controls (Forum) by JakeJeck on 10/27/2005
  • Re: Uploading website and individual aspx files using visual studio .net

    Sunny, That's what he's trying to avoid since it takes forever and a day when you have a big project but only a few files need uploaded.
    Posted to Getting Started (Forum) by JakeJeck on 10/4/2005
  • Re: I have come to the conclusion I don't understand ASP.NET...

    NC01 wrote: You'll also get that same error if the application's folder is not set up in IIS as an application virtual. NC... I think we have a winner here. Have seen this problem dozens of times in this forum and this is it 95% of the time.
    Posted to Getting Started (Forum) by JakeJeck on 10/4/2005
  • Re: Setting the Connection String

    Here's a sample from my DNN site. I use CrystalTech webhosting so your server will be different. < add key ="SiteSqlServer" value ="Server=sql13.webcontrolcenter.com;Database=dotnetnuke;uid=Jsloan;pwd=xxxxxx;" />
    Posted to Getting Started (Forum) by JakeJeck on 10/4/2005
Page 1 of 95 (950 items) 1 2 3 4 5 Next > ... Last »