Search

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

Matching Posts

  • Re: database connection - best place to put it

    ASP.NET v2.0 provide couple new ways to reference connection strings stored in the web.config or machine.config file. An Asp .net application has one web.config file which keeps the configurations required for the corresponding application. Web.config file is written in XML with specific tags having specific meanings. Machine.config file is used to configure the application according to a particular machine. That is, configuration done in machine.config file is affected on any application that runs
    Posted to Getting Started (Forum) by kmdfaizal on 10/16/2008
    Filed under: database connection
  • Re: SubDomain Creation

    A subdomain configuration is very similar to a domain name configuration. The only difference is that the subdomain entry is tied to the corresponding domain name lookup. A request for the subdomain (e.g. http://content.websitegear.com) will be routed to a DNS server containing the DNS information for the parent domain (websitegear.com). For more informaiton read and configure at Subdomain Configuration or How do I create subdomains? Hope above helps you
    Posted to Configuration and Deployment (Forum) by kmdfaizal on 5/20/2008
  • Re: URL Redirect without "http://"

    Dim Page Page = "mainpage.asp" Response.Redirect (Page) For more info. read at http://www.codefixer.com/tutorials/redirect.asp
    Posted to HttpHandlers and HttpModules (Forum) by kmdfaizal on 5/20/2008
    Filed under: redirect
  • Re: Download

    FILE DOWNLOAD USING WEB SERVICE http://www.codeproject.com/KB/dotnet/FILE_DOWNLOAD.aspx
    Posted to XML Web Services (Forum) by kmdfaizal on 3/10/2008
  • Re: Login Control (how can i redirect to home page when anyone click on logout button)

    // Note: here we are just faithfully reproducing the original ASP behaviour. // Otherwise we would use ASP.NET authentication. // Check number of login attempts not exceeded. If it is redirect to failed // login page. int maxLoginAttempts = ( int )Session[ " MaxLoginAttempts" ]; if (Session[ " LoginCount" ].Equals(maxLoginAttempts)) { Response.Redirect( " LoginFail.aspx?reason=maxloginattempts" ); } // Attempt login if (Request.Form[ " txtUserName" ].Trim(
    Posted to Security (Forum) by kmdfaizal on 3/10/2008
    Filed under: authentication authorization default custom provider
  • Re: Online payment

    I am not sure which country you are looking for this solution. If you look for Singapore you need to work with eNET who provide payment gateway. If you looking for India you can work with ICICI Bank. In general to setup up payment gateway you need talk to your local provider who provide you technical details such as how to communicate with their server. Secondly you need to have account in the local bank. Thirdly work with local provider who charge you in local currency so that you can avoid currency
    Posted to Getting Started (Forum) by kmdfaizal on 3/5/2008
  • Re: How to use webservices with 3 tier architecture?

    For Example and code you may look in to this post Web Services using WebService Behavior and .NET http://www.codeproject.com/KB/XML/WebServiceASPNET.aspx
    Posted to XML Web Services (Forum) by kmdfaizal on 3/5/2008
  • Re: How to use webservices with 3 tier architecture?

    This article may help you Application Architecture for .NET: Designing Applications and Services
    Posted to XML Web Services (Forum) by kmdfaizal on 3/4/2008
  • Re: asp .net..

    Value Description static Default. An element with position: static always has the position the normal flow of the page gives it (a static element ignores any top, bottom, left, or right declarations) relative An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position absolute An element with position: absolute is positioned at the specified coordinates relative to its containing block. The element's
  • Re: Unable to add Ajax Extensions tools in Toolbox

    Go to : \AjaxControlToolkit\bin\Debug\ Folder there you can find AjaxControlToolkit.dll file
Page 1 of 7 (69 items) 1 2 3 4 5 Next > ... Last »