Search

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

Matching Posts

  • Re: looking for the simplist authentication application setup

    [quote user="cubangt"]requires different accounts to point to different directories.[/quote] You are looking for Role based authorization. In order to implement Authentication and Role based authorization you need to install ASP.NET Membership services database and configure. Joe Stagner has produced number of videos on installation and configuration of Membership database here. http://www.asp.net/learn/security-videos/ you are interested in video #9 and #10 Note that Membership database
    Posted to Security (Forum) by sukumarraju on 11/29/2009
  • Re: Having doubts over windows service

    [quote user="Sunilsachdeva"]I think its the other way around. Outlook is not going to access my windows service;its the windows service which will access the outlook.[/quote] It is evident that Outlook requires credentails to allow access. As the Local service wont provide security credentails, you should choose Network account as mentioned in above MSDN articles. Here is another useful resource http://windowsitpro.com/article/articleid/47168/understanding-the-local-service-and-network
    Posted to Free For All (Forum) by sukumarraju on 11/29/2009
  • Re: Inserting values into DetailsView during ItemInserting...

    [quote user="chris7519"] e.Values[ "customer" ] = ( string )Session[ "uname" ]; e.Values[ "active" ] = true ; [/quote] Hi Are you using SqlDataSource or object data source? check if your session variable is not null and then insert into database. Refer: http://www.asp.net/LEARN/data-access/tutorial-17-cs.aspx http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/data/advanced.aspx
    Posted to Data Presentation Controls (Forum) by sukumarraju on 11/29/2009
  • Re: Having doubts over windows service

    Hello Go through the article here, you get all your queries answered. http://msdn.microsoft.com/en-us/library/ms686005(VS.85).aspx Refer windows service application i posted on my blog and provide your comments. http://weblogs.asp.net/sukumarraju/archive/2009/11/22/windows-service-transfer-data-btw-sql-server-and-oracle-9i.aspx Thanks,
    Posted to Free For All (Forum) by sukumarraju on 11/28/2009
  • Re: Storing custom field data from CreateUserWizard step within OnCreatedUser event

    [quote user="suj69"]at2LINQDataContext db = new at2LINQDataContext(); [/quote] Hello Are you using Linq to SQL? Note that when you configure Membership provider, your web.config contains Membership section and reads connectionstring from connectionStrings section. It requires that connectionString name is specified in Membership section. The methods you are using Membership.GetUser(RegisterUser.UserName); Guid newUserId = (Guid)newUser.ProviderUserKey; use the default settings you specified
    Posted to Security (Forum) by sukumarraju on 11/28/2009
  • Re: Does SortExpression take an expression?

    [quote user="Sam Hobbs"] Is that possible or should I give up looking?[/quote] You want to sort the data based on the column you specify in SortExpression, it can be different to the one in DataField. I do not think it is the place to specify any expression or use custom methods from code behind. In order to sort your control data you need to go for yourControl_Sorting event (to sort either ASC or Desc order). http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.sorting
    Posted to Data Presentation Controls (Forum) by sukumarraju on 11/28/2009
  • Re: Storing custom field data from CreateUserWizard step within OnCreatedUser event

    [quote user="suj69"]I'm totally new to ASP.NET, the problem seems to lie with the fact that I'm not able to access the object, and nothing to do with my LINQ to SQL setup[/quote] My suggestion was 'Membership provider is wired up to use settings you specified in your web.config Membership section, so there is no need to additionally use any other data source as you are doing(Linq to SQL). In other words, Membership provider methods are wiredup to utilise the connectionString
    Posted to Security (Forum) by sukumarraju on 11/28/2009
  • Re: Help with Validator block

    MSDN http://msdn.microsoft.com/en-us/library/dd140088.aspx . I copied the below from MSDN You can also group validators together in a rule set. A rule set allows you to validate a complex object or graph by composing different validators of different types and applying them to elements in the object graph. Examples of these elements include fields, properties, and nested objects. By using the Validation Application Block, you can perform validation and create rule sets in the following three ways
    Posted to Microsoft Application Blocks (Forum) by sukumarraju on 11/28/2009
  • Re: Having doubts over windows service

    [quote user="Sunilsachdeva"] if i try to open an application from the service like microsoft outlook for the case here which 1 will be suitable and why??? [/quote] As Microsoft Outlook is Network application, which interacts with Exchange server on Network, your windows service application should be Network service account. So when ever your windows service is accessed from Outlook on Network, it works without any accessibility problem. Is this answers your question? I copied below from
    Posted to Free For All (Forum) by sukumarraju on 11/28/2009
  • Re: Logging Application Block 4.1 not writing to Database

    [quote user="Manmadhan"] I have referenced to Logging and Logging.Database dll's also. [/quote] Do you have below namespaces in your class? using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling; using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging; using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration; using Microsoft.Practices.EnterpriseLibrary.Logging; using Microsoft.Practices.EnterpriseLibrary.Logging.Database; [quote user="Manmadhan"
    Posted to Microsoft Application Blocks (Forum) by sukumarraju on 11/28/2009
Page 1 of 101 (1008 items) 1 2 3 4 5 Next > ... Last ยป