Search

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

Matching Posts

  • Re: is LINQ and ADO.NET Entity Framework same.

    To some extent the ADO.NET entity framework is like the typed datasets, as it achieves the same thing. However, it does it through different means. Whilst the typed dataset was a generated wrapper object over a dataset (for the benefit of strongly typed access), the entity framework replaces the datasets altogether with the entity objects which allows better performance due to the reduced footprint of the entity objects (as compared to datasets). They are also similar with regards to the generated
    Posted to Getting Started (Forum) by websolutions on 12/2/2007
  • Re: is LINQ and ADO.NET Entity Framework same.

    No, they are not the same thing. LINQ stands for Language INtegrated Query and it is an extension to programming languages (such as C# and VB) that allows you to query/operate certain collections. You can find more about LINQ here: http://msdn2.microsoft.com/en-gb/netframework/aa904594.aspx or a definition here: http://en.wikipedia.org/wiki/Language_Integrated_Query The ADO.NET entity framework is an ORM tool. You can read an overview here: http://msdn2.microsoft.com/en-gb/library/aa697427(vs.80
    Posted to Getting Started (Forum) by websolutions on 12/1/2007
    Filed under: LINQ
  • Re: Javascript in Update Panel

    Without seeing the code it is all speculation, but chances are you dynamically assign the onscroll handler and when the update panel re-renders the content it doesn't get recreated. A way to solve this would be to add a handler to the initialize method that is ran after each render and set your handler there. Such as: Sys.Application.add_load( OnLoad ); function OnLoad() { yourDiv.onscroll = someMethod; }
  • Re: Problem with RadioButton

    In this case, I think you will need to hook the postback in your client side code. In other words, obtain a postback reference using ClientScriptManager.GetPostBackEventReference and wire that to your radio button's onclick event.
    Posted to Web Forms (Forum) by websolutions on 3/24/2007
  • Re: Validation Control

    Yes mate, you are going down the right path. The catch is that when using the validator controls you should always check the property Page.IsValid before doing any after postback processing. You probably didn't stumble upon this issue before because most out-of-the-box validators perform the validation on the client side so the postback is supressed in case the validation fails. That is the ideal situation, however in certain cases (such as the custom validator you are developing) the postback is
    Posted to Data Presentation Controls (Forum) by websolutions on 3/24/2007
    Filed under: asp.net 2.0
  • Re: Validation Control

    Given the fact that you need to query the database in order to validate, yes you do need a custom validator and it can't be a client side one.
    Posted to Data Presentation Controls (Forum) by websolutions on 3/23/2007
  • Re: What should the ISP do to make the site Ajax enabled?

    You should make sure your web.config file is right and it loads the ajax assemblies. Your ISP should install Ajax on their machine. It should be GAC-ed. The problem is that if they don't GAC it then in order to use the local referenced assemblies (as they have adviced you to) your application will need a high level of trust which shared hosts are not happy to give away.
  • Re: Problem with RadioButton

    Hi Inside a repeater the name attribute of the radio button gets mingled, which is why it doesn't work properly. You should try to use a basic HTML control instead (input type="radio") and bind the ids and names yourself. Here is a good example: http://www.codeproject.com/aspnet/GridViewRadiobuttons.asp
    Posted to Web Forms (Forum) by websolutions on 3/23/2007
  • Re: Deployment Issue of AjaxControlToolkit

    Do you have the proper setup (in web.config file) for the ScriptHandlerFactory handler and the scriptmodule? Also, does any other ajax control work in your app? If Ajax is not GAC-ed you will probably need to set the app to full trust.
Page 1 of 8 (80 items) 1 2 3 4 5 Next > ... Last »