Search

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

Matching Posts

  • ASP.NET Search Engine

    Hello, In my SQLSERVER database there is a table with titles, and I need to allow user to search this titles. but not a regular search. a smart one. that will retrieve the results even if a user mispelled a word. Further more, there the search needs to be quick, the table contains thousands of records. I am looking for a ready to use tool rather then FULLTEXT option. but any information to achieve that, will be good enough. Thank you all.
    Posted to Getting Started (Forum) by megetron on 9/23/2009
  • Re: ASP.NET Search Engine

    thanks, I am not sure I can use it. I have only one table and the search is for one column only. The search criteria is not flexible enough. There is a tool SQLMESH I find out, but still not sure if this is integrated with asp.net. any suggestions are welcome
    Posted to Getting Started (Forum) by megetron on 9/23/2009
  • ASP.NET Search database tool

    Hello, I have a database with table Articles with about 100,000 articles in it. I am looking for a tool that will enable website users to search by article title, and the abstract..... Is there something available? Please adise. thank you!
    Posted to Getting Started (Forum) by megetron on 9/13/2009
  • Re: Pass parameters to UserControl

    I created the usercontrol through the aspx page. changed it to LoadControl and its fine. Thank you!
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • Re: Pass parameters to UserControl

    ok, the problem still exists. I need to pass parameters to the UserControl, and read this parameters in PageLoad of the usercontrol. I am doing this: ArticlesMain ArticlesMain = (ArticlesMain)Page.LoadControl("~/Controls/ArticlesMain.ascx"); ArticlesMain.ID = "ArticlesMain"; ArticlesMain.DataView = dv; divMainArticles.Controls.Add(ArticlesMain); and even try this and I throwing an exception that no constructor was found (created already a constructor parameterless for this user
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • Re: Pass parameters to UserControl

    ok, made a progress. succeeded to create a page that returns the usercontrol object with the Dataview dv parameter ArticlesMain articlesMain = LoadControl("~/Controls/ArticlesMain.ascx", dv) as ArticlesMain; divMainArticles.Controls.Add(articlesMain); But when the default.aspx page is loaded , in the usercontrol Page_Load the parameter DataVies still null... HELP! :)
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • How to bind data to usercontrol

    Hello, In the default.aspx page: DataView dv = (DataView)ObjectDataSource1.Select(); dv.RowFilter = "id = 10 or id=30"; How do I read the dv DataView insude a custom UserControl ? Thanks.
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • Re: Pass parameters to UserControl

    [quote user="vijayst"] How did you define your property DataView? Is it something like this: private DataView dv; public DataView DataView {get { return dv; } set { dv = value; } } [/quote] Correct...
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • Re: How to bind data to usercontrol

    [quote user="Careed"] Add your code to the code-behind for the user control instead of the page. [/quote] Cant do that, see the answer for anas... [quote user="Careed"] view plain copy to clipboard print ? DataView ucdv = (DataView) this .Parent.FindControl( "dv" ); DataView ucdv = (DataView)this.Parent.FindControl("dv"); [/quote] The DataView is not a control, this is only an object locates on pageload...FindControl won't find parameters...correct?
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
  • Re: How to bind data to usercontrol

    [quote user="anas"] Instead let the page access the usercotnrol via a public propery like this: [/quote] I have tried this approoach you can view the thread here . the approach doesn't work because I cannot pass parametrs to the usercontrol, using the code behind. tried everithing to make this work. not through a property and not through LoadControl... I willl give you some background on what I am trying to do here. you see, there is a page that retrieves data from database, and this
    Posted to Data Presentation Controls (Forum) by megetron on 9/12/2009
Page 1 of 56 (552 items) 1 2 3 4 5 Next > ... Last ยป