Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

CreativeBug

@CreativeBug
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Credit Card Payment
    C CreativeBug

    Hi, There is two way to provide Credit Card Payment facility in your application 1. Install payment gateway (Costly Affair) 2. Take a serveice from 3rd party Second one is best for you, thay will provide a link, just add this link to your application and thay will handle all the burdun. visit this link for details: http://www.ccavenue.com/ Need more information, mail me:) Regards Gyanendra

    ASP.NET tutorial question

  • WEB config connection string !
    C CreativeBug

    This link will help you http://msdn2.microsoft.com/en-us/library//ms178411.aspx Gyanendra

    ASP.NET question

  • Scheduled mail delivery
    C CreativeBug

    Hello, There is no direct way to send mail through ASP.net on sending date and time. For shedule the mail sending date, you have to create a window service, put timer control inside that and check that time with your shedule time and send a mail to user. Or create one consol appliation and add that application with window scheduler and fix the time.Scheduler automatically invoke your application on given time. I think this will help you ...

    ASP.NET csharp asp-net

  • Scheduled mail delivery
    C CreativeBug

    Hello, There is no direct way to send mail through ASP.net on shedule date and time. For shedule the mail sending date, you have to create a window service, put timer control inside that and check that time with your shedule time and send a mail to user. Or create one consol appliation and add that application with window scheduler and fix the time.Scheduler automatically invoke your application on given time. I think this will help you ...

    ASP.NET csharp asp-net

  • Session Variable
    C CreativeBug

    First thing i cleared you session is object, its not a variable. Session object is automatically created every time client browser access pages from your web site. Session object is specific for every user and varies from user to user. It can be used to store variables specific for a user and IIS will maintain these variables when the client moves across pages within your site. // create a new Session variable to store the users name Session ( 'Name' ) = 'Gyanendra'; // display the name in any page on your site Response.write( 'Your name is ' + Session ( 'Name' ) ) The problem that Session variables have to overcome is that the HTTP protocol that you use to browse the web is stateless. Each request for a page is completely independant of earlier requests, so if you want subsequent pages to "remember" the users name that he entered on your front page you have to store that information somewhere. Happy Programming Gyanendra

    ASP.NET csharp java question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups