Create a procedure in youxiuser called [dbo].[spLoginAuthMyth]
Code:USE [youxiuser] GO /****** Object: StoredProcedure [dbo].[spLoginAuthMyth] Script Date: 03/20/2009 10:53:36 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO ALTER PROC [dbo].[spLoginAuthMyth] @ID varchar(20), @PASSWD varchar(30) AS SET NOCOUNT ON EXEC spUserAuthUID @ID, @PASSWD
However you can modify the [dbo].[spLoginAuthUID] to read something like this and it should remove topup. Works for me.
This is just the basic procedure, Since i have mine insert time date and all that into my online list :)Code:USE [youxiuser] GO /****** Object: StoredProcedure [dbo].[spLoginAuthUID] Script Date: 03/20/2009 10:53:36 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO ALTER PROC [dbo].[spLoginAuthUID] @ID varchar(20), @PASSWD varchar(30) AS SET NOCOUNT ON EXEC spUserAuthUID @ID, @PASSWD



Reply With Quote


