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
M

mukkanti007

@mukkanti007
About
Posts
34
Topics
28
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Retrieving the check box rows from gridview
    M mukkanti007

    Hi, Thanks for the quick response, i got the problem solved.

    Thanks Mukkanti

    ASP.NET help

  • Retrieving the check box rows from gridview
    M mukkanti007

    i am trying to add checkbox column to gridview and pick the rows which were selected , while doing this i am not able to get the rows selected, could some one say what could be the problem in the code the code i am working on is added a new check box column to gridview as ; ; ; to retrieve the rows selected i am using the code CheckBox cbCelda = new CheckBox(); int i = 0; while (i < grdViewpapers.Rows.Count) { cbCelda = (CheckBox)grdViewpapers.Rows[i].FindControl("chkassignpaper"); if (cbCelda.Checked) { Response.Write("hi" + i); } i++; } can some one say what could be the problem in accessing rows.....

    Thanks srini

    ASP.NET help

  • Regular expression to validate strings
    M mukkanti007

    All, I am looking for a regular expression for a string to allow alphabets ,digits and only special characters like underscore(_) and blank space. i tried using [0-9a-zA-Z]+$ but it accepts only digits and alphabets which is stops my functionality. my string should accept only _ and blank space no more special characters....... can some one suggest me the proper regular expression? Thanks, Mukkanti.

    Thanks Mukkanti

    ASP.NET regex question

  • Mechanism to handle user authentication and authorization
    M mukkanti007

    hi can you be more specific plz..

    Thanks Mukkanti

    ASP.NET security database tutorial question

  • Mechanism to handle user authentication and authorization
    M mukkanti007

    All, I am looking for a mechanism which makes use of "Forms authentication" and "Role based authorization". Requirement is my application should validate users belonging to different groups "Admin,guest,developer" and each group may consist of no of users. for ex: if i(developer) logs in with my id and pwd i should be redirected to web pages that are specific to me, likewise for admin and guest too. i am considering option of storing credentials in sessions and fetch the roles from db for access. Is this a feasible option. can anyone guide me?

    Thanks Mukkanti

    ASP.NET security database tutorial question

  • Editing cells of alternate rows in windows datagrid
    M mukkanti007

    Hi, to better understand the problem, I have a windows data grid with some data filled up. now i want to edit only some cells (B5,B6,B7,B8) of 1st,3rd,5th row only in that datagrid, B5- 5th cell of Row B6- 6th cell of Row . . . i need sample code for this. Hope this is clear now.

    Thanks Mukkanti

    C# csharp css visual-studio help

  • Editing cells of alternate rows in windows datagrid
    M mukkanti007

    Hi, i am in need of a solution for the problem which i could not proceed further, i am using windows datagrid(VS 2003)in C# and i need to edit some cells of alternate rows in windows data grid like b5,b6,b7 and b8 - - h5,h6,h7 and h8 here b and h stands for row and nos stand for columns i am not familiar with windows data grid so it would be great if someone suggests me a way thru some sample code. Thank you

    Thanks Mukkanti

    C# csharp css visual-studio help

  • order of execution of mark and compact algorithms
    M mukkanti007

    Hi, I have a doubt regarding order of exectuion of mark and compact algorithms in Garbage collection process, which one will invoke first mark or compact, does compact algorithm execute firstly whenever all the roots were collected?

    Thanks Mukkanti

    .NET (Core and Framework) algorithms question

  • Performance of application in case of larget data transfer
    M mukkanti007

    Hi all, i have a doubt regarding transfering of data across layers in c#. In BLLayer,I want to transfer data thru 50 parameters to data access layer then how would be the performance of the application, Also, how to pass data between DAlayer to BLLayer in c#.

    Thanks Mukkanti

    C# csharp performance tutorial

  • how to capture the id of linkbutton
    M mukkanti007

    hi all, i have a question regarding the id of link button . I am placing the link button in a gridview, Can anyone suggest me the way to do this?

    Thanks Mukkanti

    ASP.NET question tutorial

  • Regarding login page
    M mukkanti007

    Hi all, i have a question regarding session. In forms authentication if a user enters his credentials and after some process , if he closes the browser without logging off, what will happen ,does the session exists if not what is the solution for this problem i.e what he has to do to make sure that data will not be lost after closing the browser Any guesses?

    Thanks Mukkanti

    ASP.NET question security help

  • How to use COM components in .net application
    M mukkanti007

    hi all, I have a question on COM components. After usage of com component how to clean up the com component , Can someone suggest me how can i proceed ,

    Thanks Mukkanti

    C# question csharp com tutorial

  • How to pass data from business logic to data layer
    M mukkanti007

    hi all, Can anyone tell me how to pass data from code behing to data layer, I am using asp.net with c# as code behind Any suggestions would be welcome

    Thanks sri

    ASP.NET csharp asp-net business tutorial

  • Configuration settings of a dll
    M mukkanti007

    Hi all, i have a question on Configuration settings of a dll . If i want to get Configuration settings of a dll in my application how can i get that? I am using Asp.net application . Thanks

    Thanks Mukkanti

    C# question csharp asp-net workspace

  • abstract method in non abstract class
    M mukkanti007

    Hi, I have a question regarding abstract methods if i place an abstract method in non abstract class what will happen if i doesnt implement that method in derived class Any updates would be appreciated Thanks

    Thanks Mukkanti

    C# question

  • Installation of exe's in GAC
    M mukkanti007

    Hi all, i do have a question of exe's , can we place exe's in GAC like dlls If there is anyway please let me know

    Thanks sri

    .NET (Core and Framework) dotnet question

  • how to recognize an assembly
    M mukkanti007

    hi all, i have a doubt regarding assembly version. How can i know the assembly get generated using which version of .net framework how can i identify using which version of .net framework(1.1 or 2.0) the assembly generated please revert me for any clarrification

    Thanks sri

    .NET (Core and Framework) csharp dotnet tutorial question announcement

  • windows authentication in asp.net
    M mukkanti007

    hi all, could someone explain me integrated windows authentication in asp.net , i could not understand the concept well,

    Thanks sri

    ASP.NET csharp asp-net security

  • new features of .net framework 2.0 at higher level
    M mukkanti007

    hi, i checked the url already and it just shows the control suppport for .net framework 2.0 not at architecture level i need the features at architecture level only

    Thanks Mukkanti

    .NET (Core and Framework) csharp dotnet architecture announcement

  • new features of .net framework 2.0 at higher level
    M mukkanti007

    hi all, Can some one tell me the new features of .net framework 2.0 at the architecture level, i.e the changes in compilation,gc compared to compilation ,gc in 1.1 version. I need the changes at the architecture level would be happy if someone give reply.

    Thanks sri

    .NET (Core and Framework) csharp dotnet architecture announcement
  • Login

  • Don't have an account? Register

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