Web Forms :: How To Set The Browser Settings
Mar 9, 2010i am working on asp.net using C#.i make web pages but they appear in different styles in internet explorer 6,7 and 8,google chrome and mozila fire fox
View 2 Repliesi am working on asp.net using C#.i make web pages but they appear in different styles in internet explorer 6,7 and 8,google chrome and mozila fire fox
View 2 RepliesIs that possible to get the proxy settigns right across several browsers, such as IE, firefox or safari from Asp.net? According to someone it is impossible because ASP.NET runs on the server, and therefore has very limited access to the client's settings.
But having said that, HttpBrowserCapabilities is able to retrieve plenty of information from a client machine, so i thought there is must a way to also retrieve the proxy settings on client's browser/s.
Is there a way to get the precise client's operating system, coz the HttpBrowserCapabilities.Platform property doesn't give me the precise client's operating system.
Is there a way to change the browser settings for IE8, directly using the .net code.
I had developed an application, which has a functionality to upload a file from My Networks. I browse the file and try to upload it. It works fine in IE6. But in IE8, instead of displaying me the path of the file, it gives C:/Fakepath. When I enable the security setting of browser "include full path while uploading the file from the server", it works fine and gives me the whole path.
I have this in the system.web section of web.config:
[Code]....
Elsewhere, I have this code:
[Code]....
There's nothing clever going on in the dataset - it's a simple SELECT. Everything works fine when my browser has the default settings. But, as soon as I change the browser language to cy-GB, the line of code above fails with:
[Code]....
I'm probably missing something obvious, but can't see why changing the language in the browser causes a [seemingly] unrelated data retrieval operation to fail.
We have many different clients, and each client can have multiple user accounts.Right now, we have user settings set up on the ASP project, and a WinForms application can see these settings, depending on which user logs into the winforms application. They are specific to the user. I want to make them specific to the client, so users can be in "groups" by their client, and all users in the group would see/update the same settings.
View 1 RepliesI used javascript code to open popup window.Popup window "Maximize" button is in
disable state.But in Chrome it is in enable state.I want to make browser maximize button disable.
Below is my javascript code
function Call_PopUp(event, URL) {
window.open(URL, 'CustomPopUp', 'width=990, height=540, menubar=no,scrollbars =yes, resizable=no, top=50,left=50,toolbar=no,dialog=yes,minimizable=yes,maximizable=no');
}
i need to get the Browser version, type of the user. i need the short name not the long one.
at the monent i have this:
browser = Request.ServerVariables("HTTP_USER_AGENT") that retuens this:
Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249
i need only (Chrome/4.1.249), (MSIE 8.0)...............
plus i would like to get the operating system too
I have a web application that runs via IIS 7 what i want to do with the application (Asp.net with C#) is only load if the browser is greater than IE9, or greater than or equal to Chrome27 or greater than or equal to firefox19.
How to do this or areas i should read to do such a thing?
I have four themes: Theme1, Theme2, Theme3, Theme4. Under every theme, it contains a skin file and css file. In every themes, there are some same css elements, skin elements and different css elements, skin elements. How can I put the same css elements, skin elements under one shared thems instead of every themes.
View 2 RepliesI want a separate config file (not app.config) that stores style for various controls in my web application. For example i want to specify the CSS file that modifies all instances of GridView in the website. what is best practice?
View 2 RepliesI have an asp contact form that gets settings from an xml file. My problem is that the mail server I use needs basic authentication but the xml/asp doesnt seem to have authentication built in.
[Code]....
[Code]....
[Code]....
My web parts need to get data from a remote server using TCP/IP. I want to store these application specific settings and allow only an administrator to configure it. Where should these settings be best stored ? I guess these settings could be stored in web.config. I want to avoid manually editing it or build a separate administration application. Could only an administrator only web part edit those settings which could be then available to all the web parts to use ?
View 1 RepliesI have a theme containing a skin file. I assigned this skin to the page and its working fine.
Due to some of requirements, i need to get the settings of skin file.
Suppose i have TextBox/Button settings in Skin file, Now i want to get those settings, like BackColor, ForeColor etc on the CodeBehind (C#).
From this webpage: http://abg.asso.fr/Page/Offer/SearchOffer.aspx , I want to have a link which shows me directly 50 job openings in a specific (Engineering) domain (the default is 5 jobs in all categories).I know that in ASP, I can transmit a variable value by
[Code]....
But it is not working.
I have a page with simply a heading with logo image that is sensetive to click and redirects page to other page. in the middle page I have two text boxes to enter login information, whenever I push enter after filling each textbox it fires the event of logo and redirects to other page. Any kind of setting on page should be done? does page have any default event for enter key? how can I change that?
View 5 RepliesI'm looking at asp:webpart to implement some personalization on a startpage for a insurance web app.(no Sharepoint) I have read some and made some tests but I have at least one thing that I don't understand.
In some cases I wanted to reset all users personalizations to the page default settings. So to speak, I will do it in an authoritarian way.
How can I do this? Database manipulation? Which table in the database? Or is there another way?
i created a navigation page by using asp:menu control,and after when i viewed it in Internet explorer8, the SubMenu's are not displaying. But when i checked the Compatibility view button which is next ot Stop and Refresh Or in Tools->CompatabilityView. then it is displaying the submenus. same problem exists in Google Chrome but not in FireFox how to view the submenus without changing the Compatability settings.
View 4 RepliesIm calling the new popup window from gridview like
[Code]....
In the AddTargetPopUP.aspx ,I have button Call "ADD".When i click the add button it'll insert datas into database.I want to reload the parent gridview after insert into the database and want to close the popup.
I don't know if its possible in ASP.NET (I'm assuming it is) but I've seen other websites where they have pager settings of grids that are actually linked to the first letter or first couple of letters of a certain field within the gridview. So.. if you have 1000 names... instead of guessing which page the name you're looking for is on, you would just click on "Sa" which would take you automatically to the page that "Sanders" was on. Can anybody tell me how to do that?
View 2 RepliesI have three identical procedures that are all used to open the contents of a GridView into Excel. One was working fine but the other two were getting a 'RegisterForEventValidation can only be called during Render();' error when attempting to run the form.RenderControl(html) command. The only difference I saw was that the one that was working had the allowsorting value set to 'False' where the other two were set to 'True'. I set the other two to false and they worked. So what is going on here? Why would this cause the error; is the GridView somehow doing a post back and loosing settings when this value is set?
View 3 RepliesI'm working on a new C# web application in Visual Studio 2010, and am having problems reading a value in Web.Debug.Config from the GLobal.asax.cs file.
In the Application_Start event I've got the following code:
Application.Add("AppID", ConfigurationManager.AppSettings.Get("AppID"));
I also tried:
Application.Add("AppID", ConfigurationManager.AppSettings["AppID"]);
And in the Web.Debug.Config file I have the following:
<applicationSettings>
<add key="AppID" value="123" />
</applicationSettings>
I also tried:
<appSettings>
<add key="AppID" value="123" />
</appSettings>
And I tried having it in a file path, like so:
<appSettings file="C:MyPathappSettings.config"/>
When running in debugger, I've got a break-point in the Application_Start event in Global.asax.cs. It hits the break point, but in all cases the value coming back from ConfigurationManager is coming back null. What am I doing wrong?
I'd like to position the Pager numbers in a GridView control at a set position on each page, regardless of the number of records returned.
e.g. Even if only a few are returned, I'd still like to have the pager controls at the bottom of the screen.
Is this possible? VS tells me I can't use a div
I recently bought domain and hosting from godaddy.com and uploaded my website files based on asp.net on server.
The problem is when i run Default.aspx file in visual studio it runs properly but same set set of files when ran after uploading on server gives error in web.config file.
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
WindowsMicrosoft.NetFrameworkv2.xConfig
-->
[Code] ....
I have website home page which my client can view well on his blackberry mobile phone but I have link buttons on that page which redirect the users to other pages ..just Response.Redirect ............simple code.... but when he clicks on the link, it requests for enabling javascript..I do that but the home page just does a postback. Links are not working on cellphone........... on regular website they are working fine.
View 2 RepliesI use a third party report viewer that handles viewing and printing reports. To print a report, I use their print method that takes printer settings as a parameter.
How can I get the printer settings on the client machine? Is this possible with JavaScript/AJAX, or is that a security risk?