Search

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

Matching Posts

  • Re: Login authenticate withouth redirect.

    With Ajax you can retrieve data from the server asynchronously without interfering with the display and behavior of the existing webpage. So you can use as many updatepanels in your webform as you need. All you have to do is to put webcontrol in question within new updatepanel.
    Posted to Security (Forum) by slavik118 on 12/28/2009
  • Re: Its time to move classifieds to Asp.Net MVC

    You were right. IronRuby version 1.0 RC1 has just been released: http://ironruby.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=35312 . I gonna look through it in the coming days.
    Posted to Classifieds Starter Kit (Forum) by slavik118 on 11/21/2009
  • Re: Does MS still support Mobile Web development

    You are right. As mobile toolkit got on in years, the mobile wiki became absolutely useless. The toolkit of several years ago are behind the times now. Browsers on new mobile devices support Silverlight, Flash and Ajax, so developing of websites aimed on mobile devices or on pc users - it's all one now. Moreover, .net 2.0 is also not the best option for a mobile oriented application. In .net 3.5 Microsoft has also made a great improvements to classes that affect overall performance of the application
    Posted to Mobile and Handheld Devices (Forum) by slavik118 on 10/20/2009
  • Re: help with login control and ModalPopupExtender VB

    You should call Show() method of ModalPopupExtender control in case of login failure to continue to display the popup dialog. The method in question should be called within the method that contains the user authentication logic. <asp:Login ID="lgLogin" runat="server" OnAuthenticate="Login1_Authenticate" FailureText="Incorrect login or password" // Authenticate user's crendential if Login button is clicked. protected void Login1_Authenticate(object sender
    Posted to ASP.NET AJAX Control Toolkit (Forum) by slavik118 on 10/19/2009
  • Re: Does MS still support Mobile Web development

    Follow this link to get ready to the exam in question: http://wiki.asp.net/page.aspx/433/mobile-applications/ and this link if you get a task to develop a website oriented on mobile devices in the future: http://www.asp.net/mvc/
    Posted to Mobile and Handheld Devices (Forum) by slavik118 on 10/17/2009
  • Re: How much secure is App_Data Concering XML files?

    App_Data folder will not be accessable from the web by default, so it's the right place to store the xml file in question: http://msdn.microsoft.com/en-us/library/f7fb46ye(VS.80).aspx . Anyway, I highly recommend you to encrypt password before adding it to your xml database file. MS used this approach in almost all starter kits. Despite the fact that Open Xml SDK and linq to xml http://www.microsoft.com/downloads/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en allow
    Posted to Security (Forum) by slavik118 on 10/17/2009
  • Re: Crypt XML with RSA

    Actually, the maximum key size of the RSACryptoServiceProvider is 16384 bits: http://msdn.microsoft.com/en-us/library/system.security.cryptography.keysizes.aspx However, 2048-bit key size is maximum optimal option: http://www.developmentnow.com/g/46_2004_11_0_0_24184/RSA-maximum-key-size.htm It would be better to opt to other cryptographic algorithms such as CryptoStream if it comes to encrypting of big chunks of data.
    Posted to XML and XmlDataSource Control (Forum) by slavik118 on 10/15/2009
  • Re: Its time to move classifieds to Asp.Net MVC

    Cool. Actually, MVC is good option if you want to build mobile version of your application. With MVC you can easily create appropriate view for every particular mobile device.
    Posted to Classifieds Starter Kit (Forum) by slavik118 on 10/15/2009
  • Re: Its time to move classifieds to Asp.Net MVC

    Thanks a lot for sharing your experience and opinion on Rails. Please find below all new features of C# 3.0 (Actually, VB.NET 9.0 and C# 3.0 are like two peas in a pod, so all below mentioned features are also available in VB.NET 9.0. Moreover it's so easy to integrate projects written in other .net languages to your project in visual studio.) Follow this link for further details: http://msdn.microsoft.com/en-us/library/bb308966.aspx I've already used all these new features. If you make the
    Posted to Classifieds Starter Kit (Forum) by slavik118 on 10/15/2009
  • Re: Login authenticate withouth redirect.

    1. Put login control within updatepanel: <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Login ID="Login1" runat="server" onauthenticate="Login1_Authenticate" PasswordLabelText="Wachtwoord:" PasswordRequiredErrorMessage="Een wachtwoord is vereist." RememberMeText="Bewaar mijn gegevens." TitleText="" UserNameLabelText="Gebruikersnaam:" UserNameRequiredErrorMessage
    Posted to Security (Forum) by slavik118 on 10/15/2009
Page 1 of 17 (164 items) 1 2 3 4 5 Next > ... Last »