State Management :: Unable To Get Hold Of The UserName From The QueryString?
Jul 7, 2010I have trouble getting hold of the UserName from the QueryString. My data is not displayed on my page.
What is the problem with this code:
[Code]....
I have trouble getting hold of the UserName from the QueryString. My data is not displayed on my page.
What is the problem with this code:
[Code]....
i use from a session for holding user's authority in web application.
how to i set Session.Timeout that never expire or can i use other way to holding user authority
in web application.
i need access to this authority in all page of web application
why I am getting the following error message with the following code:The Code:
Partial Class test2
Inherits System.Web.UI.Page
Const ICEVarUsername = User.Identity.Name
[code]...
[URL]
i want to get url without c=2, i want to get this
[URL]
is it possible?
I do not know that How to hide the querystring parameter from url in asp.net
View 5 RepliesHow to remove querystring items? Dim currentUrl As String =[URL] Remove the querystring("link") key item and it's value? It will now become [URL]
View 4 RepliesI'm using Response.Redirect for empty QueryString.
[Code]....
I'm not sure if this is the best way to do this.
trying to pass a guid value to querystring - it should take the guid value from one page to another. i get an error: value cannot be null, parameter name: g. so my guid value is not being pass to my second page. below is code:
Page one:
static Guid g = Guid.Empty;
public static string userID = g.ToString();
string userName = string.Empty;
[code]...
I am new to .net 4.0 and am using EF Model and SessionState Mode=SqlServer and I am getting this error below:
Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.
I checked the stack trace and its complaining about
[assembly: global::System.Data.Objects.DataClasses.EdmSchemaAttribute()]
[assembly: global::System.Data.Objects.DataClasses.EdmRelationshipAttribute("PoplarGroveModel", "tblMenuRole", "tblMenu", global::System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(PoplarGroveDataModel.Menu), "tblRole",
[Code].....
I marked it as serializable but then it complains about System.Data.Objects.ObjectContext is not marked as serializable and hence throws the same error.
Our Web Server rebooted due to power failure. Now ASP.Net State service would not start logging the following error on the server:
Unable to make the Session State Request to the session state server. Last known phase=Sending request to the state server
how to bring back the ASP.Net State service.
global.asax:-I have defined a struct (my_struct)-I add a List of structs (List<my_struct>) to Application["MyList"] In default.aspx:-I have defined the exact struct (my_struct) and want to cast the Application["MyList"] object to the List of structs.
example: x = (List<my_struct>)Application["MyList"];
I receive this error "Unable to cast object of type 'System.Collections.Generic.List`1ASP.global_asax+my_struct]' to type 'System.Collections.Generic.List`1[_Default+my_struct]'
I am building a simple search interface for one of our existing systems. I am using windows authentication. What I would like to do is grab the username of the logged in user via httpcontext.current.user into a session variable on page load and use it in various places on my page. My problem is that when i run my code in debug mode from visual studio it works fine. But when i try to run my code from the browser using localhost it does not work.
View 4 RepliesMy app has broken after upgrading to ASP.NET 2.0. The problem is that Request.QueryString is empty when the SelectedIndexChanged event of a IE Web Controls tab strip is fired. It worked perfectly in ASP.NET 1. I have the tab strip contained within my own UserControl.
View 3 RepliesI've a Linkbutton control in the master page. And in the content page(Home.aspx) i'm trying to navigate it an aspx page(Apply.aspx) passing a value using querystring. Everything is working fine when i click the apply linkbutton control for the first time i.e i'm able to get the value the querystring and able to use it.
But when i click on the same linkbutton second time, i'm not getting the querystring value?how to persist the querystring value on reloading?
I have a aspx page and there is a web user control that must load dynamically with the data related to the aspx page....
ok so I want to use a querystring and pass it to the web user control.....how do I do this?
then also how do I pass a querystring from a web user control back to a aspx page?
This is a question I always had...and therefore never actually started to use the web user control
i 'm creating a website. i create a login form. after login my session will be start and all page of user profile will check first is session istart. i have stored userid in session for identify user. But i want to username of that userid. Remaiber username and userid are different. and i want to show only username on welcome tab.
e.g. userid= rksaini89
username= ramkrishn
so i want to show like this "welcome ramkrishn" on my home page and other many places on different forms. my confusion is that how to get username acording userid and where to keep store it. i can get it from database according session but i'm confused where to keep it so i can use it everywhere on my website.
Iam very new to this forums as well as ASP dot Net...i was succesful to write this code in 3 to 4 ways but im not getting using the below method.
here it goes...
Task Name : Disable User Name after 3 invalid Password Attempts using "SESSIONS" & "VIEW STATE" with SQL Server as Database i want code in "C#"
In Detail :
When i Enter a User name and Password correctly and click Login it will Re-Direct to Destination Page.
But when i enter same User Name but invalid password 3 times then the user name should be blocked (After The User Name has been blocked the user will send an email to Admin that my user name has been blocked so Reset etc etc and the Admin will Reset The new Password)
Here Create the User Name & Password In SQL Table Directly. As We give the user name & password to users...also create another column in Table for an integer so that when it hits to 3 it should block the user name and also another column for status.
For Counting the values till 3 donot use static integers..instead use SESSIONS also use VIEWSTATE
Which is best option to store confidential information in a page?Control,Session,QueryString etc ... ?And also the performance also should be good ... ?
View 11 RepliesWe are setting session variables in the login page with all user details.And in all subsequent pages we check this session variable.This check is done in the page load of master page.As the number of users increased am getting error with these session variables.This session variable is returning me "nothing" when I check and the user is redirected to logout page.Interesting thing is that this is not happening always.
View 2 Replieshttp://msdn.microsoft.com/en-us/library/system.web.caching.sqlcachedependency(v=VS.90).aspx
I could not locate the class SqlCacheDependency as per this MS article!
I am developing a new website and I have a very strange problem. Depending on a simple query string parameter value I have "Internet Explorer cannot display the webpage" or a correct page. Let me show a couple of examples:
This url works, and displays the value passed in the "data" parameter:
http://62.22.11.221/default.aspx?data=cppexample
But this url does not work and I don't really know why:
http://62.22.11.221/default.aspx?data=cpp%20example
I try to create a persistent cookie to store a preferred language on our website, but it doesn't work.
So, to isolate the problem, I created a new website, with a blank page and with the code behind bellow. If I click the button, the page post back and I get this:
"Cookies expires: 0001-01-01 00:00:00 value: 10"
[Code]....
I'm currently developing a website using VS2010 Express/SQL Express 2008, and am using the applications development server to test.
I have created an access layer which effectively takes all my cachable data and creates datasets.
I've also created a system wheras for each dataset, For each dataset I also create a token cached object (a string), which is set to expire before the dataset. The theory behind this is that when my token expires and is removed from cache, it calls a routine to rebuild the dataset, and re-caches the new result, then creates a new token. Think of it as a poor mans SQL dependency.
What this allows me to do is rebuild datasets behind the scenes with little interruption/delay throughout the day. It all works great - for instance when a user updates a table containing 100,000+ records on the site, the dataset rebuilds at hourly intervals reworking and consolidating the data in the background before representing it in a smaller cachable form.
What I would like to know is this. If I was to replace the database during the usable day (only updating the tables that users don't update), lets say adding 50 new records, would it cause the cache to be dropped. The reason I ask is because it the cache remains until its exipry time, I can replace the database and rebuild datasets incorporating new data in the background when the token expires. If the cache is dropped when I update the database, it will mean interuption whilst I reload the datasets and will change my strategy on uploading new data.
I ask the question because I'm currently working on the development server and unable to test in a live server environment at present.
when we go for client and server side state management in asp.net
View 2 RepliesI want to use autouser login in my website using ASP.NET C#.i.e., If I say that autouser login, this means user has to include user id and password to url for verification.
Example: http://10.9.80.210/Rmax/abc.aspx?Username=xyz,Password=1234Here, 'UserName and password' will be as autouser login, '10.9.80.210/Radmax' is the website url, 'abc.aspx' page is any of the page of website.