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 SkipVought 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. ank2go

    Could not copy temporary files to the output directory.

    It's strange that you'll need to close IDE if you want to delete the assembly (dll). Also, I think when you comply with VS.NET you're using the login account not ASP.NET account. Good luck.
  2. ank2go

    Sql search question

    At this rate, the list of questions maybe endless. Suggest you download a few projects and learn from it: http://www.codeguru.com/ http://www.codeproject.com/ http://www.dotnetjunkies.com/ http://asp.net/Default.aspx?tabindex=0&tabid=1
  3. ank2go

    Sql search question

    This works -- I've checked it: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="screenlogin.WebForm1"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN"> <HTML> <HEAD> <TITLE>WebForm1</TITLE> <META NAME="GENERATOR" CONTENT="Microsoft...
  4. ank2go

    Sql search question

    since you're using VS.NET, consider using code-behind instead of the script thingie.
  5. ank2go

    Sql search question

    The syntax is wrong and you'll need to make your control a server control by adding the RUNAT=SERVER: <asp:Button OnClick = "Button1_Serverclick" RUNAT=SERVER></asp:Button>
  6. ank2go

    Could not copy temporary files to the output directory.

    Hi Jason, I don't think you need to close IDE (Visual Studio .NET) if you want to delete the .dll from bin. Also, try to check if the ASP.NET account has access to your project folder. HtH.
  7. ank2go

    Sql search question

    I agree with ca8msm -- you'll need to get the fundamental of .NET. For what you're trying to do, use form authentication for your login screen. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetwebapplicationsecurity.asp HtH.
  8. ank2go

    NT athuntication for ASP.NET and SQL Server

    Three things you'll need to do: 1. IIS - configure for "Integrated Windows authentication". 2. Web.config - change to use impersonation 3. SQL box - config to use "Integrated Windows authentication" for database. HtH.
  9. ank2go

    Simple Update SQL - Error Out

    JarlH, it's ansi 92 standard, right? It's for a MS SQL box. PHV, it looks like I'll try the where name in approach. Thanks for the replies !
  10. ank2go

    Simple Update SQL - Error Out

    Hi, Please help. I have a simple update sql: UPDATE dbo.tbl01 SET par = 'Y' FROM dbo.tbl01 tbl01 INNER JOIN ( SELECT name FROM dbo.tbl01 WHERE recordtype = 'P' and active = 'Y' and par = 'Y' ) ppr ON tbl01.name = ppr.name WHERE...

Part and Inventory Search

Back
Top