Search

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

Matching Posts

  • CascaadingDropDownList on edit page

    C# I have a basic form to insert Events, I have 2 cascadingDropDownLists for Property and Location... Ok thats fine... Now i have an Edit Events page, and want to have the cascading dropdowns already pre-populated with teh information in the database... I've tried: ListItem item = DropDownList1.Items.FindByValue(DataRow1["Property"].ToString())); if (item != null) { item.Selected = true; } and now, i dont know what else to try... Or any suggestions around this would be great... Thanks
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bedubs on 11/11/2009
  • Re: CascaadingDropDownList on edit page

    Sure thing. I have a list of properties... PropertyA, PropertyB, PropertyC, and Locations, Location1, Location2, Location3... --Select Property-- --Select Location-- My event will happen at PropertyC and i need to change the date of the event, so i click on Edit Event... All of the fields pre-populate with the information already in the database from when i created the event... I dont know how to select the selected item in the CascadingDropDownlist... -- PropertyC-- --Location1--
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bedubs on 11/11/2009
  • System.Web.Mail The server rejected one or more recipient addresses

    here is my code cs try { System.Web.Mail.MailMessage message = new System.Web.Mail.MailMessage(); message.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", 1); message.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "UserName"); message.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "PassWord"); message.From = "my@email.com"; message.To = "their@emailAddress
    Posted to Getting Started (Forum) by bedubs on 10/15/2009
  • Re: xoap Weather Channel API

    Awesome, Thanks surajitkhamrai. How can i get pieces of this on a web form... for instance the <xsl:value-of select"cc/tmp" /> is actual temperature... how could i get that on the bottom of my web page or top... would i have to create a new<asp:Xml..... tag every time?
    Posted to Component Discussions (Forum) by bedubs on 9/23/2009
  • xoap Weather Channel API

    I"m new to APIs and using C# with XML and all of that.. I registered and received the ID and Key from Weather.com. I have the URL that i want to go to... The URL of course is XML... I have an understanding of adding and using web references... but this is different... how do i go to this url, then get the information (XML) and display it on my webpage? Any good reading out there? or anyone who has come across this API? Or just any help in General? Here's the URL http://xoap.weather.com/weather
    Posted to Component Discussions (Forum) by bedubs on 9/22/2009
  • Gridview Column Calculation

    I am able to calculate the columns in a gridview then display the results in the footer... I am running into trouble when the format is a currency format {0:c}.... How can i display the currency and still calculate the total? I know a conversion is needed somewhere because the number is converted to a label which includes the dollar sign $ int totalEntries = 0; decimal totalUnits = 0; decimal totalTotalValue = 0; int totalClients = 0; int totalFFHold = 0; protected void GridView1_run(object sender
    Posted to Data Presentation Controls (Forum) by bedubs on 9/18/2009
  • Using Datasource like a database table

    C# codebehind I have a 2-part form... the 1st part uses a bunch of dropdowns and checkboxes to build a query... the query is then grouped in a gridview.... the 2nd part i want to click on the grouped item and show a detail list of the groups... How can i query the datasource of the gridview to display the detailed list... the detailed list of course will drill down to a detail view for each list item. Does this make sense?
    Posted to Data Presentation Controls (Forum) by bedubs on 9/8/2009
  • Re: Using Datasource like a database table

    Ok thanks. I guess i'll just use sessions to pass the control values.
    Posted to Data Presentation Controls (Forum) by bedubs on 9/8/2009
  • Re: Repeater and Codebehind

    That sounds great, can you please show me an example... Thanks
    Posted to Data Presentation Controls (Forum) by bedubs on 7/29/2009
  • Repeater and Codebehind

    C# I have a table being populated by a repeater... I have the codebehind assigning the datasource.... How can i populate my headerTemplate With a value from the codebehind? ---- Designer View <table> <asp:repeater ID="id1" runat="Server"> <HeaderTemplate> <tr><td rowspan='<%#(numRows) %>'><%#("RowName")</td></tr> </HeaderTemplate> <ItemTemplate.>........ ---- Code Behind conn = new sqlconnection(connStr
    Posted to Data Presentation Controls (Forum) by bedubs on 7/29/2009
Page 1 of 11 (104 items) 1 2 3 4 5 Next > ... Last ยป