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
N

Nimua

@Nimua
About
Posts
19
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Redirect's strange behaviour
    N Nimua

    I know that it is not a postback, and It is usually get into section if (not is postback) in pageload, where it calls DataBind. In my opinion this is normal for Response.Redirect. And in my case Response.Redirect("url",true); then in debugg mode I have a breakpoint in PageLoad

    if (!IsPostBack)
    {
    Page.DataBind();
    }
    else
    {
    //else section
    }

    it goes to the "else section" ... and i don't understand why :(

    ASP.NET debugging

  • Redirect's strange behaviour
    N Nimua

    Hello! I use Response.Redirect(url,true) for return to the same page in edit mode, after creation of object. But for some reason it doesn't work correctly :sigh: After Response.Redirect(url,true) fulfills in PageLoad in debug mode it doesn't get in (!IsPostBack) section : (( .. Thank you.

    ASP.NET debugging

  • Special Row in Grid
    N Nimua

    Hello! If have grid for edit settings for providers, 1 row for each provider, there is a template with 2 textbox, but I have one provider that need another number of settings, how I can change the controls in template in runtime, after databind?

    ASP.NET css question

  • Membership. Login is not case sensitive
    N Nimua

    MS SQL, but all tables and etc. were created by Membership. I know that by default comparing strings is not case sensitive in MS SQL , but there are settings to make it case sensitive. What should I do? Is there some setting in Membership? Or I need to turn on settings right in DB?

    ASP.NET security question code-review

  • Membership. Login is not case sensitive
    N Nimua

    Hello, I use Membership poilcy for user in my site. I find that ASP make's no difference between login QWERTY and QwErTy, it is not case sensitive : ( fortunatly for password that's not so. Is there a way how make login case sensetive? I believe this will improve security?

    ASP.NET security question code-review

  • Select evet fires twice using ObjectDataSource GridView [modified]
    N Nimua

    Hello! I have a page with rezult of big query, I use GridView & ObjectDataSource to display them, but unfortunatly I found that ObjectDataSource fires Seletc twice :( I don't know why it happens. There is no databind on the page. Page has masterpage. While debug it looks as PageLoad of page is finished and fires first Select, than the second Select fires after the MasterPage PageLoad finishes. :confused: Thank you for help

    ASP.NET database debugging help

  • ReportViewer Heigth
    N Nimua

    Hello! I have a local report, and a report viewer on the page. When the report is too big, viewer truncates it : ( I tryed set heigth of report viewer to 100% or delete height property from tag. When I do export to excel, in excel everything is allright.

    ASP.NET

  • Master Page Issue
    N Nimua

    Hello, You can add the following code to the aspx page <!-- function LoadPage(event) { alert('Load') } document.body.onload=LoadPage; //--> It's strange but it works only if you write rigth in aspx file, it did not work when I try to use RegisterStartupScript. I hope this will help you : )

    ASP.NET help question

  • DropDownList remove blanks from string
    N Nimua

    Hello, I find solution to my problem : ) string blanks = HttpUtility.HtmlDecode("     &nbsp "); rez = point_number + blanks.substring(0,length(blanks) - length(point_number)) + point_name

    ASP.NET question

  • DropDownList remove blanks from string
    N Nimua

    Hello, May be somebody knows another way to solve the problem, is there columns in DropDownList or anything else to apart data?

    ASP.NET question

  • DropDownList remove blanks from string
    N Nimua

    Oops : ) second string in Replace is  

    ASP.NET question

  • DropDownList remove blanks from string
    N Nimua

    Hello, Thank you for answers but I tryied to replace blanks with   but it displayed like this 123    Name : (( Here is my code: On DropDownListDataBound for (int i = 0; i < DDListPoint.Items.Count; i++) { DDListPoint.Items[i].Text = DDListPoint.Items[i].Text.Replace(" ", " "); } When I should replace blanks? on the client side in Javascript? Thank you : )

    ASP.NET question

  • DropDownList remove blanks from string
    N Nimua

    Hello, I need to form string point_number + point_name and display it in my DropDownList as text. I have a string of blanks form rezul string like this: rez = point_number + blanks.substring(0,length(blanks) - length(point_number)) + point_name Unfortunatly I saw that in DropDownList the string is displayed with only 1 blank between number and name : (( Then I replace blanks to _ and everything was allright. What I need to change in DropDownList to force it display blanks? Thank you

    ASP.NET question

  • Error occur on start project from shared folder
    N Nimua

    Hi, Ben, thank you for your help Unfortunatly we try to create an app pool and user, but in that case we've got an error Service Unavailable I don't know what that mean. Another action: we create app pool and set user IWAM_ blah blah then we got an error failed to create smt in C:\WINDOWS\temp..... Thank you

    ASP.NET csharp asp-net sysadmin windows-admin data-structures

  • Error occur on start project from shared folder
    N Nimua

    Hello! We use IIS, ASP.NET 2.0. I added AJAX calendar to pages. Everything was allright on localhost, but when we load new version on server it does not work. But if we move project to the default directory wwwroot, evething is allright :^) Thank you. Error: Server Error in '/' Application. -------------------------------------------------------------------------------- Security Exception Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]

    ASP.NET csharp asp-net sysadmin windows-admin data-structures

  • How to put in cache only part of webpage
    N Nimua

    Hello! I have a project in C# ASP.NET. It is some kind of web-office for our clients. I need to forbid caching of all information and put in cache all images in order to save time and money of our clients. Thank you.

    ASP.NET csharp asp-net tutorial

  • How to put in cache only part of webpage
    N Nimua

    Hello! I have a project in C# ASP.NET. It is some kind of web-office for our clients. I need to forbid caching of all information and put in cache all images in order to save time and money of our clients. Thank you.

    C# csharp asp-net tutorial

  • How to edit in GridView
    N Nimua

    GridView in SmartTag have option allow editing, you should add column CommandField Edit,Update,Cancel Also you should specify in SqlDataSource in Update stored procedure. After that in the grid will appear column with link button Edit. Click it and data in columns with ReadOnly=false will be displayed in textbox.

    ASP.NET question tutorial

  • Menu style
    N Nimua

    Hello, I have a menu element on my page, all of it items have the specified CssClass, but when I create a class for links and visited link in .css menu items also inherit these styles :( . Please tell me where I should set the font color to prevent this. My .css For menu .Menu { font-family: Arial; font-size: 14px; font-weight:bold; color: #000000; background-color: #FFFFFF; } .MenuDynamicHoverStyle { background-color: Gray; color: #FFFFFF; } .MenuDynamicMenuStyle { background-color: #FFFFFF; color: #000000; } .MenuDynamicSelectedStyle { background-color:Gray; font-family:Arial; font-weight: bold; font-size: 14px; color: #E0E0E0; } .MenuDynamicMenuItemStyle { background-color:#FAFAFA; border-color: #E0E0E0; border-width: 0.1em; border-style: solid; font-family:Arial; font-size: 12px; font-weight: bold; color: #000000; } .MenuStaticSelectedStyle { background-color: #FFFFFF; color: #FFFFFF; } .MenuStaticHoverStyle { background-color:#FFFFFF; color: #000000; } For links A:visited { color: Gray; } A:link { color: #EF3123; } Thanks.

    ASP.NET css wpf architecture
  • Login

  • Don't have an account? Register

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