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
U

User 642242

@User 642242
About
Posts
13
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • using class file from another project in asp.net project
    U User 642242

    If you using Visual Studio just add a reference to the dll that was created in the first project. Otherwise just place the dll in the bin directory in your web project and you will be able to access the classes.

    ASP.NET csharp c++ asp-net tutorial question

  • Basic-like authentication
    U User 642242

    http://www.freevbcode.com/ShowCode.asp?ID=5248 This should do the trick.

    Web Development help windows-admin security

  • prevent download source file from the website
    U User 642242

    I've found getting the handlers working is a bit fiddly. I would suggest you use the second version, as I have not yet worked out how the paths actually work. You need to put the configuration in the web.config of the asp.net application.

    ASP.NET database help question

  • Basic-like authentication
    U User 642242

    .Net provides a class to do that for you. Try looking under System.Text

    Web Development help windows-admin security

  • How to handle multiple submit button clicks?
    U User 642242

    Add an onsubmit handler to the form that checks a variable to see if the form has been submitted before. If it has, just cancel the submit event buy setting the event.returnValue = false in IE, for Netscape - I thinkyou just return false within the event handler.

    ASP.NET javascript database tutorial question

  • Basic-like authentication
    U User 642242

    Hi, AUTH_USER and AUTH_PASSWORD are populated by IIS if it requested the authentication itself. You need to check the HTTP_AUTHORIZATION variable. This will be Base64 encoded and will encompass both the username and password. See the specification I posted earlier to figure out how it is put together.

    Web Development help windows-admin security

  • prevent download source file from the website
    U User 642242

    You will need to register the .mdb file extension to be handled by the asp.net ISAPI extension within IIS. At the moment IIS will just serve the file.

    ASP.NET database help question

  • Basic-like authentication
    U User 642242

    Also, I think the header needs to have a realm. WWW-Authenticate: Basic realm="WallyWorld" http://www.w3.org/Protocols/HTTP/1.0/draft-ietf-http-spec.html#WWW-Authenticate Gives more details.

    Web Development help windows-admin security

  • Newbie XML/XSL question
    U User 642242

    I'm assuming that you are trying to write out a html table. If you are then you need to output a table tag as well as the rows and cells.

    XML / XSL xml help question

  • IMG tag, xml xsl newbie question
    U User 642242

    What have you tried so far? How about posting examples of the xml and xsl that you are using.

    XML / XSL xml html help question announcement

  • A simple question about MSXML
    U User 642242

    When you create the "element" node you need so specify that it is part of the same namspace as the Schema element. Otherwise what you are saying is that the element node does not belong to any namespace, hence the empty xmlns attribute. Something like : pXMLDom->createElement("element",","http://www.w3.org/2001/XMLSchema");

    XML / XSL xml announcement html database help

  • Strange Behaviour with dynamic controls and postback processing
    U User 642242

    I'm not 100% sure on this, but it might help you out. I believe that : are used by the .Net Runtime when a control implements the INaming interface to ensure that all child controls have a unique id within the web page. Such as in the data grid control. The child control's uniqueId becomes ParentId:ChildId. When you use the : in your id, you may be confusing the .net runtime to try and look for a parent control that does not exist, so it never finds your control. HTH

    ASP.NET help question csharp asp-net com

  • XML Compliant QueryString
    U User 642242

    The use of ampersands within the querystring is part of th http specification. If you want to use ; instead you will have to abandon the use of the Querystring collection object and grab the raw url and parse the information yourself. Are you trying to store a URL into an xml document? If that is the problem, why not just encode the url correctly eg. http://www.myweb.co.uk/somepage.aspx?arg1=2&arg2=3

    ASP.NET csharp windows-admin xml
  • Login

  • Don't have an account? Register

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