Search

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

Matching Posts

  • Re: jMyCarousel hide ul / li until scritp loads

    I appreciate the reply but I'm not looking for a different carousel... simply a way to make this one do what I need.
    Posted to Component Discussions (Forum) by sayitfast on 12/16/2009
  • jMyCarousel hide ul / li until scritp loads

    I have a user control that I'm using the jMyCarousel jQuery plugin on... the control works fine but I have one issue. I'm displaying 12 very small images in the carousel (4kb) each.. When the carousel initially loads it loads like a list at first then it will snap into the carousel after a second or so... How can I hide this until the script is fully loaded? Even if I just hide it for a couple seconds is fine... Before it loads: After loaded: My user control: <%@ Assembly Name="SnapshotsUI
    Posted to Component Discussions (Forum) by sayitfast on 12/15/2009
  • BInd DropDownList to SqlDataSource in a FormView Programmatically

    I have a FormView control that has a dropDownList along with two SqlDataSource Controls in it. I'm need to switch the DataSource ID of the DDL based on a RadioButtonList. I know I can bind a DDL to a datasource control programmatically doing somthing like this: protected void Page_Load(object sender, EventArgs e) { CheckBoxList1.DataSourceID = "SqlDataSource1"; CheckBoxList1.DataTextField = "SomeValue"; CheckBoxList1.DataValueField = "UserID"; CheckBoxList1.DataBind
    Posted to Data Presentation Controls (Forum) by sayitfast on 10/11/2009
    Filed under: FormView, FindControl, populate dropdownlist
  • Re: BInd DropDownList to SqlDataSource in a FormView Programmatically

    Ok... this does allow me to add the dataSource in the code behind protected void Page_Load(object sender, EventArgs e) { DropDownList slot1 = this.FormView2.FindControl("ddlSlot1") as DropDownList; //SqlDataSource kennel1 = this.FormView2.FindControl("Kennel1") as SqlDataSource; //SqlDataSource kennel2 = this.FormView2.FindControl("Kennel2") as SqlDataSource; slot1.DataSourceID = "Kennel2"; slot1.DataTextField = "dog_number"; slot1.DataValueField
    Posted to Data Presentation Controls (Forum) by sayitfast on 10/11/2009
  • Re: BInd DropDownList to SqlDataSource in a FormView Programmatically

    Not really... The FormView is updating a table in the DB... the DDL is getting its data from another table and binding that result to the first table. Also I'm going to switch the datasource that DDL is using conditionally. The FromView and DDL are not getting there data from the same source... but they are updating the same datasource. Just binding declaritively is no problem... but becuase I need to switch the DataSource conditionally it adds some difficutly for me.
    Posted to Data Presentation Controls (Forum) by sayitfast on 10/11/2009
  • Re: image z-index

    If I understand correctly: body{padding-left: 15px; padding-top: 15px; background-image:url("../images/url.JPG"); background-repeat:repeat; z-index: -1; filter:alpha(opacity=20); opacity:.90; }
    Posted to Web Forms (Forum) by sayitfast on 10/11/2009
  • Re: Which compare tool is better?

    Beyond compare is really great... could not live without it.
    Posted to Visual Studio 2008 (Forum) by sayitfast on 9/26/2009
  • label in Repeater - ItemDataBound only finding 1 item.

    I have a repeater control bound to a datasource. I need to find the label in the control find a specific string and remove or replace it... I can get to the first item and remove the string by my code does not loop through all items. protected void Repeater1_ItemDataBound(object sender, EventArgs e) { foreach (RepeaterItem item in Repeater1.Items) { int a = Repeater1.Items.Count; // I'm only getting 1 item if (item.ItemType == ListItemType.AlternatingItem || item.ItemType == ListItemType.Item
    Posted to Data Presentation Controls (Forum) by sayitfast on 8/27/2009
    Filed under: Repeater find control
  • Re: label in Repeater - ItemDataBound only finding 1 item.

    I ended up pretty much doing same thing: THANKS!!! protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { RepeaterItem item = e.Item; int a = Repeater1.Items.Count; if (item.ItemType == ListItemType.AlternatingItem || item.ItemType == ListItemType.Item) { Label chb = (Label)item.FindControl("descriptionLabel"); if (chb.Text.Contains("word")) { chb.Text = chb.Text.Replace("word", ""); chb.BackColor = System.Drawing.Color.Red; } } }
    Posted to Data Presentation Controls (Forum) by sayitfast on 8/27/2009
  • Dynamically load user control into webform thats inside a master page

    I'm trying to load a user control into a web page that is inside a master page... getting object not set to instance of an object. I can load the UserContorl no problem inside a standard webform but the master page is where I am getting stuck. Any help is greatly appreciated... My Code: protected void Page_Load( object sender, EventArgs e) { Control myform = Page.FindControl( "form1" ); Control AdminPhotoGallery = LoadControl( "UserControls/AdminPhotoGallery.ascx" ); myform
    Posted to Web Forms (Forum) by sayitfast on 3/29/2009
    Filed under: user control, ASP.NET C#, master page, .ascx .aspx C#
Page 1 of 4 (37 items) 1 2 3 4 Next >