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
P

P S Pundeer

@P S Pundeer
About
Posts
25
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • System.IO.IOException Please help me
    P P S Pundeer

    You have to release resources used during the first phase of your code, which is saving file into physical space/directory. For example:

    fileObjectUsed.dispose();

    OR

    FileUpload1.dispose();

    I would recommend you not to store file into your web server location as this will add extra overhead of saving and deleting files and of-course security problem. You can directly store it(file) into database by converting it to bytes. Check out the link Storing Binary Data to Database using ASP.NET 2.0[^] Observe the code lines...

    Dim imageBytes(fileUpload1.PostedFile.InputStream.Length) As Byte
    fileUpload1.PostedFile.InputStream.Read(imageBytes, 0, imageBytes.Length)

    puranonnet@hotmail.com BCS Technology

    ASP.NET database help

  • problem in clearing the sessions
    P P S Pundeer

    Although, there are lots of hacks using javascript to disallow navigating back, but those are, as per my belief, not all foolproof. I would suggest you to use Cache.SetNoStore() on the page where you don't want to allow user to visit using back button. Back button actually presents the page using stored cache on browser client. Here is the code which you can place in page load event...

    Response.Cache.SetNoStore();

    This will make each and every visit to this page to be fetched from server. You can add some code logic or session variable etc to check if it is a valid page request. I hope this will help.

    puranonnet@hotmail.com BCS Technology

    ASP.NET help

  • logged in username in windows service
    P P S Pundeer

    I am creating a windows service where the employees get automatically logged into database when they start their computer. For this my service require the windows logged in username. Environment.UserName is not working. Is there any other tried solution?

    puranonnet@hotmail.com www.ibrinte.com

    C# database com question workspace

  • Checkboxlist inside Repeater control
    P P S Pundeer

    Instead of handler, try ItemCommand event of repeater. Also use CommandArgument and CommandName in combination with this to solve further issues. In the same event, you can find checkbox list by ... ((CheckBoxList)e.Item.FindControl("ControlName"))

    puranonnet@hotmail.com www.ibrinte.com

    ASP.NET

  • popup
    P P S Pundeer

    I hope this will solve your problem... btnAdd.Attributes.Add("OnClick", "openForm(); return false;");

    puranonnet@hotmail.com www.ibrinte.com

    ASP.NET javascript help

  • how to find string match in any updated columns in a trigger
    P P S Pundeer

    Hi Good Guys! I want to write a trigger which can iterate through each udpated column and check for a string match. if found then I need to rollback. TIA

    puranonnet@hotmail.com www.ibrinte.com

    Database database com regex tutorial

  • Unable to hide the Label Column
    P P S Pundeer

    You can use hidden field html server control instead of label.

    puranonnet@hotmail.com www.ibrinte.com

    ASP.NET question

  • Multiple Login Page
    P P S Pundeer

    Hi there! Is there any way to give different login url for different folders. E.g. I have directory 'admin' where I want user to redirect to admin login page. This url is different then the main site login page. It's urgent!:sigh:

    puranonnet@hotmail.com www.ibrinte.com

    ASP.NET com

  • page error mail
    P P S Pundeer

    Hell Everybody! I have set an error page in web.config file. this page fires a mail embedding last error (Server.getLastError()) and also url of error page. It is working fine but without error message.:( Can anyone suggest the better solution.

    ASP.NET sysadmin help

  • asp.net Error Code 1460: timeout
    P P S Pundeer

    Thanks Arindam for timely help. Now it is uploading successfuly.:-D

    ASP.NET csharp asp-net help

  • asp.net Error Code 1460: timeout
    P P S Pundeer

    Has anybody solution to it. i tried uploading video, i got this error.

    ASP.NET csharp asp-net help

  • update to remote server
    P P S Pundeer

    Hi folks, Can anybody suggest me the script by which I can update/insert to a database in remote server without using linked server techniques.:doh:

    Database database sysadmin tools announcement

  • disallow page level cache
    P P S Pundeer

    Thanx for that

    ASP.NET csharp asp-net tutorial

  • disallow page level cache
    P P S Pundeer

    Thanx Deepak But I was looking for page directive to disable caching.

    ASP.NET csharp asp-net tutorial

  • disallow page level cache
    P P S Pundeer

    Hi there I am in urgent need to know how to disable page level caching in a user control. Please provide asp.net 2.0 specific solution.

    ASP.NET csharp asp-net tutorial

  • asp.net control output html into string
    P P S Pundeer

    Plz Help. How can I put asp.net control output HTML into a string variable (or string builder).:confused:

    ASP.NET csharp html asp-net help question

  • Image Ressizing Component
    P P S Pundeer

    Do not provide height and width of the image. It will appear in its original size iteself.

    ASP.NET csharp asp-net help learning

  • passing values to another window
    P P S Pundeer

    you can use 1. query string with the new window url. 2. session variables I prefer first one.

    ASP.NET java tools tutorial

  • getting cell index or text
    P P S Pundeer

    Try this In ItemCommand event -> e.item.cells(1).text 1 is used for 2nd column.

    ASP.NET css database

  • how to show(point) multiple selected cities on map
    P P S Pundeer

    Hi Rich, Thanks for timely suggestion. It worked. Thanks again -Puran:) puranonnet

    ASP.NET question help tutorial
  • Login

  • Don't have an account? Register

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