you can Check this http://forums.asp.net/p/1010241/1347970.aspx[^]
tejesh123
Posts
-
how to implement the "remember me" component in the asp web page -
how to implement the "remember me" component in the asp web pageIf the Check box is enabled you can work with this Code you can try FormsAuthenticationTicket and add it to Cookie.
-
Heirarchical Role ImplementationCan 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
-
Heirarchical Role ImplementationI want to Maintain Roles in Database
-
Heirarchical Role ImplementationHi 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
-
Passing Parameters To RDL Report from aspx pagehi 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)
-
Passing Parameters To RDL Report from aspx pageI 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
-
webfarm with state server session modeSorry 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..?
-
webfarm with state server session modeThx 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
-
webfarm with state server session modeThx for the Soln
-
webfarm with state server session modehi 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
-
gridview selected index returns -1 out of range exceptionHi 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
-
gridview selected index returns -1 out of range exceptionhi 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
-
Need DHTML Menu Control with built in securityI 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
-
schema for xml documenthi all I want to generate the .xsd for xml document the format of xml would be say
///optional 0 to n . . . .... . . . . . . .
-
adding 2 hashtablehi friends How do i add/merge 2 hashtables into third hashtable Tejesh
-
authorization in asp.net using sql databseHi 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
-
retrival of password problemThx for the immediate solution ... This has resolved my problem Tejesh
-
retrival of password problemHi 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.
-
authorization in asp.net using sql databsethx 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