User Controls :: Save User Selected Language In Cookies In MultiLingual Website
Aug 18, 2015
i have read your article on aspsnippets.com. Multilingual Website and i have implemented that i works good .but there is new problem arrising. suppose my default language is english set in internet option so the whenever website reloaded or redirected then all content will show in english language but
when i changed it to hindi then current webpage converted to hindi but after that if i pressed any button on current page or i redirected to any other link of particular website then again hindi is converted to english.
Nowadays having activity logs of the system is needed for history and if someone who is trying to mess your site, it is easily to define who is it and when it happen. And even Facebook have it.
I'm not sure what is the best way to create website that allows user to change its language. The website is really small, it has couple of pages (Default.aspx, Location.aspx, Catalogue.aspx and Info.aspx), but I'm not sure how to change the language of the content. User can change the language by clicking on one of the four image buttons which then add "lang" query string to the url, but whenever page reloads it keeps adding more and more "lang" querystrings.
I have 3 checkbox and one button in default.aspx page I want when users select these checkboxs and click on button it saves this checkboxs values in cookie...
I wrote below code:
protected void Imgorder_Click(object sender, ImageClickEventArgs e) { HttpCookie order = new HttpCookie("order"); if (CheckBox1.Checked) { order.Value = CheckBox1.Text; } } }
is it correct? and if it is correct I wrote it just for 1 checkbox how I can write for 3 checkboxs that if users select them it saves valuse in cookie...
I have created a web application and generated local resources. Its working when user select language from browser. But what i want is, when user select language from dropdown list, i want to change the pages according to selected language. i can save user selected language in a session. then how should I change/assign local resource file to web page?
I have a user control (ascx file) that contains an interface for users to change the data retrieved from the db. So, I am displaying data and most of this data can be edited by the user. When the user enters text into a textbox, and clicks "Save Changes", the value they typed in is lost and not persisted to the database. I realize now this is because the SaveChanges button does a postback, and the user control gets reloaded with its original valuesbefore the code within my SaveChanges button gets executed. I'm not sure if there are properties I need to set to save the input data, or if I need to write my own code to do it. What is the generally accepted method to do this? (Also, all of the controls in the ascx file are wrapped in an Update Panel.)
I have one application form in which i want to store image of student with enrollment no and when i submit i want to store that image and take that image on another page on submit button two things should be done
1. storing the image and enrollment no 2. passing enrollment no and image to another page
Language problem cookies in the Arab language upload my project to server , I discovered that when you save data[Values] in cookies, we find ( Request.Cookies["test"].Values["val"] -----> تجربة) in that the symbols =?????
I have a signup page and Main page in my web site. i want to prevent an user to type directly the Main page URL, user should have access after signup/login.
I created timecard for a website and I would like to automatically clock out the user everytime when user logout or close the website. Is there a control for that? And if yes, where do i have to put he code at?? I think it should be in the code behind of master page... and on the Page_Load function
After clearing cookies in browser , user is able to navigate to any page? Here i am not clicking on logout I expect once browser cookies are cleared, user should be redirected to login page .
I'm creating a website that is going to be dual language, so it will have a german face and an english face and the user can swich between the two versions.
I am making a small silly game but I am not sure of the best way to do it or where to start.Basically I will send a link to the people who are going to playing and on that page they will enter their name. I am then going to get an email with their name in so I can see they have accepted my challenge The game will then redirect to the next page. Thats not a problem.The problem is the game is going to played over a month and each time they visit the game on any page the website needs to know which player is the one who is playing.The other thing Is there is going to be a clue button for each question if they click the clue button for that question They will loose points. Now I want a way of of telling if a user was to display the clue close the website then come back and answer it.Is cookies the best way? Or maybe a cookie for the persons name and a server side file for each player so I have a record of who showed clues for what questions?
i want to know if a user is using website to register , and there are three registration pages with three table . if the user has completed one page and submitted and when he redirects to next page his system shuts down and if again he opens the site he should be redirected to the second page how to make it.
I would like users to upload a profile picture when they register, and to then show that picture in a picture box control when they are logged in based on that specific user.