Recent content by bigkid

  1. B

    How do i pass the value of a dynamically created checkbox to an asp:Button?(c# asp

    webform)? for (int everyrow = 0; everyrow < countmyrows; everyrow++){ ... itemdiv.InnerHtml ="<input id=\"Checkbox"+everyrow+"\" type=\"checkbox\" />" } I want the asp:button to know which checkboxes are checked so that it can delete the corresponding row. I'm trying to do something similar to...
  2. B

    How do i clear all the contents of a div tag and then repopulate it?

    (asp.net c# webform)? I dynamically populated a div tag with html controls. On button click event i want to to refresh the div tag and populate it with another set of html controls. i heard about view state and turning it off but im not sure if ill be able to use that...please help.. Need your...
  3. B

    How do i remove dynamically generated HtmlGenericControls from my Webform(asp.net c#)?

    System.Web.UI.HtmlControls.HtmlGenericControl itemdiv = new System.Web.UI.HtmlControls.HtmlGenericControl("DIV"); itemdiv.ID = "NewDiv"; itemdiv.InnerHtml = "" + "<table width=\"100%\"><tr>" + "<td width=\"75%\"><a class...
  4. B

    How do I remove duplicate rows from a dataset? (c# asp web form)?

    I HAVE to fill my dataset twice and now some rows are duplicated. How do i delete duplicate rows from the dataset? I've been looking for answers online for about 2 hours now and i can't seem to find the code that i need. Please help..send me a link to the code or please type the answer. Your...
  5. B

    How do I remove duplicate rows from a dataset? (c# asp web form)?

    I HAVE to fill my dataset twice and now some rows are duplicated. How do i delete duplicate rows from the dataset? I've been looking for answers online for about 2 hours now and i can't seem to find the code that i need. Please help..send me a link to the code or please type the answer. Your...
  6. B

    How do i create a search engine for my website using asp.net c#?

    I am trying to search a SQL Server 2008 database table based on user input into a texbox. I have already tried using the clause LIKE '%x%', but it's not useful when the user types in multiple words. I want my search engine to be able search keywords in the database. I read about FREETEXT and...
Back
Top