Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. andy2325

    Viewing current users

    Is there a way that I can view all current users using the membership provider. I want to create an admin page to where I can view who is logged in.
  2. andy2325

    Retrieving a user's role and viewing it

    I get an error saying that it can not convert value of type '1-dimensional array of string' to 'string'
  3. andy2325

    Retrieving a user's role and viewing it

    I was wondering how I can go about viewing a user's role using the membership provider. I have tried the following: dim strRoles() as string strRoles = Roles.GetRolesForUser("User") lblRole.text = strRoles
  4. andy2325

    .MDF in ASP.NET

    I currently am using Visual Studio 2005 with SQL Server express. When I use the Configuration Utility it creates a .MDF file in my App_Data folder. My questions areas follows: would it do this if I used SQL Server 2005 and if so could I relate the user name to another table in another database...
  5. andy2325

    automating email

    Is there a way that I can automatically email users reports? If so how?
  6. andy2325

    Administering a web application

    Is the ASP.Net web admin utility able to administer the application when it is in the production folder and currently being used? Would it be better if I wrote my own administration tool to delete users etc.?
  7. andy2325

    SQL Server and Oracle 10g

    Would it be better to copy data periodically from Oracle 10g to SQL Server instead of using both?
  8. andy2325

    SQL Server and Oracle 10g

    Well our in house data collection system stores information to Oracle 10g and with Visual Studio 2005/2008 when creating user's and roles it seems they use SQL Server.
  9. andy2325

    SQL Server and Oracle 10g

    Is is possible to concurrently use SQL Server 2005 and Oracle 10g together in the same web application. Say SQL Server will be used for the user's and logging actions and then Oracle 10g will be used for the information that is to be displayed to the user.
  10. andy2325

    Graphically Customizing Forms

    I am new to ASP.NET and so far I know the basics. I have used some CSS to Customize the web app however I want it to look more professional. I was wondering how I would go about that. Would I use CSS, themes, and skins or some third party to customize the buttons and such.
  11. andy2325

    Gridview updating/deleting with datasource

    I seem to get errors saying thet my stored procedures have to many paramters. Anyone have any advice? Below is my code for the page and store procedures: **************************************************** <%@ Register Src="Header.ascx" TagName="Header" TagPrefix="uc1" %> <!DOCTYPE html...
  12. andy2325

    Using a stored procedure to update information in textboxes

    no actually it does not throw any errors
  13. andy2325

    Using a stored procedure to update information in textboxes

    I currently have a small database where I use stored procedures to update the information entered in textboxes below is the stored procedure: ******************************************************* Create PROCEDURE dbo.U_Customer ( @CustName char(10), @Phone char(50), @Billing char(50)...

Part and Inventory Search

Back
Top