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
B

Brij

@Brij
About
Posts
1.1k
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0
    B Brij

    TheGreatAndPowerfulOz wrote:

    Until they "get it right" at which time all past history will be forgotten and erased.

    How and who will confirm that they got it right.:-D But by that time they will keep changing the versioning of internal dlls here and there. And while working on it later, we may end up pulling our hair looking the messed up libraries.

    Cheers!! Brij

    The Insider News asp-net dotnet csharp com help

  • ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0
    B Brij

    :-D :-D :-D

    Cheers!! Brij

    The Insider News asp-net dotnet csharp com help

  • ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0
    B Brij

    How many times the new version of ASP.NET introduced? ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0 - Scott Hanselman[^] It proves again that Naming things is the hardest problem in Computer Science.

    Cheers!! Brij http://codewala.net/

    The Insider News asp-net dotnet csharp com help

  • Bugs found in .NET 4.6
    B Brij

    I missed the last thread. MS also already came up with an advisory for the same http://blogs.msdn.com/b/dotnet/archive/2015/07/28/ryujit-bug-advisory-in-the-net-framework-4-6.aspx[^] and recommending "F# developers are encouraged to wait to deploy the .NET Framework 4.6"

    Cheers!! Brij

    The Insider News csharp announcement com

  • Bugs found in .NET 4.6
    B Brij

    There were couple of major bugs found in .NET 4.6. We understand that in such a major release, bugs are bound to be there. Let's see how soon MS resolves it. Details here http://nickcraver.com/blog/2015/07/27/why-you-should-wait-on-dotnet-46/[^] http://www.infoq.com/news/2015/07/NET46-bug2[^]

    Cheers!! Brij

    The Insider News csharp announcement com

  • How to give image path which located in other system in asp.net
    B Brij

    Form which account, your web applications is running on IIS. Most probably that account does not have permission for accessing file system.

    Cheers!! Brij

    ASP.NET csharp asp-net windows-admin tutorial

  • Can a Compare validator fire when either of two controls changes?
    B Brij

    You question is looking Good. You can go for custom validator or try using two compare validator for both the controls.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET question

  • column 'member_channel_name' does not belong to table
    B Brij

    As per your code, it does not seem issue here. I'll advise you first run your Proc and see whether it is running and resturning data correclty. Then you debug your code and check the datatable in immidiate window and see it in visualiser what columns are available in datatable.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET database com help announcement

  • how to install downloaded nested master page template???
    B Brij

    Currently I am not using VS2008 but the following post must give you a solution Nested Master Page in VS 2008[^]

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp visual-studio tutorial question

  • Problem with MapPageRoute..
    B Brij

    Can you reframe your question and your post is not looking proper. Please correct it.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET question com help announcement

  • Is there any design pattren for authentication in ASp.Net MVC3?
    B Brij

    This is a very good post and talks about custom provider. This should be helpful Click here

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp asp-net database design security

  • troll
    B Brij

    thatraja wrote:

    Gone.

    :)

    thatraja wrote:

    BTW Use this forum[^] for these kind of things.

    Thanks for sharing.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    Site Bugs / Suggestions csharp asp-net com windows-admin tools

  • troll
    B Brij

    Hi Please see the link below. http://www.codeproject.com/script/Membership/View.aspx?mid=8402714[^] This person got registered on 15th nov and posted bogus messages at several Place. We need to remove it. Thanks, Brij

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    Site Bugs / Suggestions csharp asp-net com windows-admin tools

  • Jscript in content pages
    B Brij

    MalarGayu wrote:

    the textbox is a webcontrol textbox....

    I dont think that this is a issue. Is your button, textbox are on the same content page? One other way is, Register a javascript variable and assign the ClientId of textbox from Server side (C# code) and use that variable to get the ClientId of textbox in the validate method.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET help csharp html visual-studio tutorial

  • Jscript in content pages
    B Brij

    According latest post in the thread, You actually need to pass the ClientId of your textbox into the validate method. And your method should be like

    function Validate(txtClientId)
    {
    if (doucment.getElementById(txtClientId).value == "") {

                        alert("you must enter the List name");
                        return false;
                 
                  }
              
              
         }
    

    and you can call the method on aspx page

    Validate("<%=txtListname.ClientID %>")

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET help csharp html visual-studio tutorial

  • fpassing asp.net field
    B Brij

    You can put the variable at Class level. You can also put it in session variable and can be accessed at any other pages as well

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp question asp-net help tutorial

  • custom validator
    B Brij

    Member 8217517 wrote:

    Is there a way to display the error message once the foucs has moved from the checkboxlist control to the next item on the web page? If so, can you explain how this would occur and point me to a reference that would explain this process?

    Use client validation script of custom validator and enable Client side validation. If you are validating at server side also, Do have a check property Page.Isvalid before doing any operation. This property will return true only if all validators is passed else it will return true. For details about asp.net validators, you can have a look to one of my post Exploring ASP.NET Validators

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp help question asp-net workspace

  • validation control final?
    B Brij

    If your page contains several asp.net validators and when you click a submit button, all validators will be fired. The page will submitted only when each validator pass successfully. You can get details of asp.net validators from one of my article below Exploring ASP.NET Validators Do let me know in case of any confusion.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp asp-net tutorial question

  • Membership.ValidateUser port to user tables
    B Brij

    Yes Membership provider uses it's own predefined tables. But if you wnt to use your own custom tables then you need to write your custom membership provider. Lots of tutorials available for this. You can find it easily.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET database

  • asp.net web table problem
    B Brij

    Why don't you write custom code for this.

    Cheers!! Brij Microsoft MVP ASP.NET/IIS Visit my Blog: http://brijbhushan.net

    ASP.NET csharp asp-net help tutorial workspace
  • Login

  • Don't have an account? Register

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