I see the stored procedure “aspnet_Applications_CreateApplications”
What C# method would allow me to run this programmatically?
I see the stored procedure aspnet_Applications_CreateApplications What C# method would allow me to run
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The procedure
aspnet_Applications_CreateApplicationsis used by several of the sql providers in ASP.Net, such as the Membership, Role, and Personalization providers. But the procedure is not actually called through C# code. Instead this procedure is called by other procedures. For example:In the Sql Membership Provider, when you call the CreateUser method:
aspnet_Membership_CreateUserprocedureaspnet_Applications_CreateApplicationsprocedureThus, you will have to write your own code to connect to the database and call this procedure.