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
T

tejesh123

@tejesh123
About
Posts
23
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to implement the "remember me" component in the asp web page
    T tejesh123

    you can Check this http://forums.asp.net/p/1010241/1347970.aspx[^]

    ASP.NET csharp tutorial

  • how to implement the "remember me" component in the asp web page
    T tejesh123

    If the Check box is enabled you can work with this Code you can try FormsAuthenticationTicket and add it to Cookie.

    ASP.NET csharp tutorial

  • Heirarchical Role Implementation
    T tejesh123

    Can SomeBuddy Please Explain How to maintain roles at user and group level using Sql server Database.Can Role Management be extended to achieve this. Is there any other alternative to this. Tejesh

    ASP.NET security sales question announcement

  • Heirarchical Role Implementation
    T tejesh123

    I want to Maintain Roles in Database

    ASP.NET security sales question announcement

  • Heirarchical Role Implementation
    T tejesh123

    Hi all, how do i implement Heirarchical role(Group With Roles) (For Eg.Admin,Marketing Etc) Which can have Additional roles (role1,Role2 etc..)with ACL(Insert,Update,Delete) Same as Unix. The Role Should populate both from group and user. I am not sure whether current role based security will work in this scenario. If any other suggestion please let me know. Tejesh

    ASP.NET security sales question announcement

  • Passing Parameters To RDL Report from aspx page
    T tejesh123

    hi Abhishek thx for replying i want to know how do i access the parameters from the previuos page, when i opened the report page in new window. Which will be the optimum solution(querystring,session or something else)

    ASP.NET sysadmin

  • Passing Parameters To RDL Report from aspx page
    T tejesh123

    I want to pass parameters from aspx page to RDL server report. Using Cross posting i am able to access the parameters from the previous page and also the know which is the previous page. Thus dynamically bind the report and pass the parameters . But my requirement is i want to open the report page on new window. Also know the previuos page(parameter page.) I want to know whether querystring or session will work best for me. if there are any other solution let me know. thanks in advance Tejesh

    ASP.NET sysadmin

  • webfarm with state server session mode
    T tejesh123

    Sorry to frame wrong question. My session expires when it tries to jump among CPU's .Yes the state server is configures properly and the database is also working properly. No issues when no of worker processes set to 1,but soon they are increased it times out. I have already added state server in web.config and webgarden also set to true in machine.config It seems to be I am missing out some step ,cant get exactly where..?

    ASP.NET sysadmin tutorial

  • webfarm with state server session mode
    T tejesh123

    Thx Abhijit a very nice article on Session state management.. Well i am testing the same for the Web garden getting session timeout. I also edited the machine.config file for webgarden=true and also set the appropriate cpu mask.. Am i missing something

    ASP.NET sysadmin tutorial

  • webfarm with state server session mode
    T tejesh123

    Thx for the Soln

    ASP.NET sysadmin tutorial

  • webfarm with state server session mode
    T tejesh123

    hi all I am trying to create a web farm in iis6. I have set session mode=stateserver. But the session expires frequently .please guide on this Tejesh

    ASP.NET sysadmin tutorial

  • gridview selected index returns -1 out of range exception
    T tejesh123

    Hi Thx for the Reply protected void grid_row_command(object sender, GridViewCommandEventArgs e) { GridView g = (GridView)sender; int selectedindex = g.SelectedIndex; string commandname = e.CommandName; switch (commandname) { case ("singleclick"): // Response.Write("Single Click"); CheckBox cb = (CheckBox)g.Rows[selectedindex].FindControl("checked"); if (cb.Checked) cb.Checked = false; else cb.Checked = true; break; case ("doubleclick") : Response.Write("DoubleClcik"); break; } } i am trying to write the set the selected index on OnRowCommand="grid_row_command" for my gridview I dont know where i am going wrong.. Waiting for reply

    modified on Friday, January 9, 2009 12:10 AM

    ASP.NET database

  • gridview selected index returns -1 out of range exception
    T tejesh123

    hi all I am trying to write a code wherein when user click on the row the particular checkbox will be checked/unchecked. My code for this is CheckBox cb = (CheckBox)GridView1.Rows[selectedindex].FindControl("checked"); which returns -1; Please suggest soln to it. Tejesh

    ASP.NET database

  • Need DHTML Menu Control with built in security
    T tejesh123

    I need to develop DHTML Menu control for my aspx page which has built in security (horizontal layout) Also the menu must span atleast 3-4 submenus and uses a xml as a datasource. Please suggest a appropriate link for the detailed documentation of how to proceed as i have very less knowledge on web development. Any sample code will be appreciated. Thx in advance. Tejesh

    ASP.NET css security xml tutorial

  • schema for xml document
    T tejesh123

    hi all I want to generate the .xsd for xml document the format of xml would be say

    ///optional 0 to n . . . .... . . . . . . .

    XML / XSL xml database

  • adding 2 hashtable
    T tejesh123

    hi friends How do i add/merge 2 hashtables into third hashtable Tejesh

    C# question

  • authorization in asp.net using sql databse
    T tejesh123

    Hi all, I need to generate menubar .. The menu bar must generate the menus based on user privileges stored in the database.. Please Help its urgent

    ASP.NET csharp asp-net database sql-server sysadmin

  • retrival of password problem
    T tejesh123

    Thx for the immediate solution ... This has resolved my problem Tejesh

    C# regex database sql-server sysadmin help

  • retrival of password problem
    T tejesh123

    Hi all I am encrypting my password using md5 algo to store in sql server.. While retriving the password the esacpe sequence "\r" is replaced "\\r". thus the 2 password doesnt match. i tried to check for \\ at the rertival string and replace it with \ using string.replace also tried to resolve the problem using regex.. It doesnt work for me.. thx in advance.

    C# regex database sql-server sysadmin help

  • authorization in asp.net using sql databse
    T tejesh123

    thx for the reply Well there may be more than 100+ users and more than 100+ access right and which are defined at the group level and some special at personal level.. Is it going to be optimistic solution for my problem.. Any custom methods which can be used across all the pages on the website. Also please give a solution for menu security w/o using role based security provided by asp.net

    ASP.NET csharp asp-net database sql-server sysadmin
  • Login

  • Don't have an account? Register

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