Security :: Disable SSL On Client Browsers?
Aug 18, 2010
I set up my web site to use SSL encrption and I set the settings in IIS to ignore client certificate. But when i access the web site from a client browser, it still shows "403" error.
View 1 Replies
Similar Messages:
Dec 21, 2010
I have a portal site and i want to make the backward button to disable state after the user gets logout.Is it possible by C# programming?Or we need to go for client side scripts like Javascript or jquery?
View 3 Replies
Dec 21, 2010
I have a portal site and i want to make the backward button to disable state after the user gets logout.Is it possible by C# programming?Or we need to go for client side scripts like Javascript or jquery?
View 1 Replies
Jul 19, 2010
I would like to disable dragpanel functionality using javascript yet only IE seems to work. If anyone knows how to get this to work across multiple browsers.
This is the aspx:
[Code]....
Currently I have no way of accessing the DragPanelExtender directly using javascript as it keeps returning null. If I disable the extender in the code behind from a partial postback it works fine, but I want to remove this partial postback and do it all in javascript. This works in IE.
[Code]....
View 3 Replies
Jun 10, 2013
I Have Print Screen Disable For IE, I Need To Disable Print Screen in Chrome, FF, Opera, Safari ....
View 1 Replies
Feb 8, 2011
After logout from my site,when i click on browsers back,it shows my web application.How to disable it?
View 6 Replies
Mar 22, 2010
I am using a DataList to display records from SQL backend in ASP.net 2.0 Framework 3.5. In the ItemDataBound I am setting up a Hyperlink's URL and enabling/disabling it based on data.
The HTML is as follows:-
[Code]....
and in the vb code:-
[Code]....
This is all working correctly in IE, but in Opera, FireFox and Safari while the Hyperlink works, the control is not disabled if Stk.Docs = 0.
View 14 Replies
Nov 6, 2010
We have a windows 2003 webserver which hosts .NET applications. Since last Microsoft security updates formsauthentication on all websites works only on non IE browsers? Before the update we experienced no problems.
View 2 Replies
Mar 23, 2010
I have a few web servers behind an Amazon EC2 load balancer. I'm using TCP balancing on port 80 (rather than HTTP balancing). I have a client polling a Web Service (running on all web servers) for new items every few seconds. However, the client seems to stay connected to one server and polls that same server each time. I've tried using ServicePointManager to disable KeepAlive, but that didn't change anything. The outgoing connection still had its "connection: keep-alive" HTTP header, and the server kept the TCP connection open. I've also tried adding an override of GetWebRequest to the proxy class created by VS, which inherits from SoapHttpClientProtocol, but I still see the keep-alive header.
If I kill the client's process and restart, it'll connect to a new server via the load balancer, but it'll continue polling that new server forever. Is there a way to force it to connect to a random server each time? I want the load from the one client to be spread across all of the web servers. The client is written in C# (as is the server) and uses a Web Reference (not a Service Reference), which points to the load balancer.
View 1 Replies
Feb 10, 2011
I would like to disable all client side validation in an Asp.Net web site in order to test that server side validation is correct (i.e. I want to test against people altering the response or tampering with client script)Currently, I am either-Disabling JS in the browserManually disabling client validation for individual validators.
View 2 Replies
Mar 3, 2011
i am having an mvc 2 application in which i have a form that contains two buttons
[Code]....
Now my requirement is to disable validation when the user clicks `Add` button. But validate when the user clicks `Save` Button.
View 5 Replies
May 18, 2010
I am using xVal in a ASP.NET MVC project. One of the forms has two buttons and i want to disable the client side validation when one of the buttons is clicked. Is there a way to conditionally disable client side validation in xVal?
View 2 Replies
Mar 21, 2011
How can I conditionally disable client-side validation of some fields ?
Here is the example of what I need to do:
user writes name and address and submits. Both are validated both server and client side. If validation passes e-mail is send to given address and (name, address) pair is stored.as a response same page is displayed (I don't want redirect!) this time with confirmation. User can retype their name and submit. In such case e-mail will be resend to the address that corresponds to given name.
It does not work because: client side validation will not pass when user clicks resent button on the second (confirmation screen). It would say that e-mail is required even if there is no field for it. How can I disable javascript validating email before the confirm page gets send to user ?
Example ASP.NET MVC page
<%if (Model.Confirm == false){ %>
<% using (Html.BeginForm()) { %>
Your email: <%: Html.EditorFor(m => m.Email) %>
Your name: <%: Html.EditorFor(m => m.Name) %>
<input type="submit" value="Send Email" />
[Code]....
View 4 Replies
Apr 3, 2010
How to disable asp:TextBox on client-side click on HTML checkbox or server-side asp:CheckBox using JavaScript?
<script type="text/javascript" language="javascript">
function enableTextbox() {
// ?[code]....
View 3 Replies
Jul 24, 2010
At the time of file download process, teh IE thorws a dialog box asking the user open / save or cancel. How to disable the open option, i want only save or cancel. This file is a zip file. i don't want a open option, is it possible?
View 1 Replies
Aug 13, 2010
I have js script block (very long one that does editing capabilities to an invoice page).
I want to enable/disable this functionality on the server-side. First thing popped up on my mind was to say runat="server" to the tag, and set visible=true/false to asp.net, thinking asp.net does not render the HTML for non-visible items, so the block wouldn't load at all, which was what I wanted. But I quickly realized that saying runat="server" to client-side code was a real bad idea :)
What ar emy options, besides loading script from client side. Cuz I have other buttons that come from the server-that will enable dieable too.
View 1 Replies
Apr 23, 2010
I've got a drop-down where the user selects a Country. It is a required "field".Next to it, there is a textfield named State. If the user selects US, then the field State is required. If the user selects e.g. Sweden, the State is not required, since Sweden has no states.Example code:
<asp:DropDownList runat="server" ID="Country"></asp:DropDownList>
<asp:RequiredFieldValidator ControlToValidate="Country"
runat="server" Display="Static" ErrorMessage="Required field" />
[code]...
View 1 Replies
Jun 22, 2010
i have an AJAXIFIED button(btnsend) thas is disable by it's Property -> Enabled="False"
i have a TextBox Next To This Button And I Want Enable that Button When Users Type Something in That TextBox...
so i did this (JavaScript):
function onkeyupontextbox() {
var btnSend = document.getElementById("btnSend");
btnSend.disabled = false;
}
but that button does not work after becomes enable...
what can i do about that?
(i am using radajaxmanager for ajaxify that button) (when i remove that button from RadAjaxmanager Or UpdatePanel So EveryThing Is Ok , But I Want That Button In Ajaxify Mode)
View 2 Replies
Jun 22, 2010
disable / enable An Ajaxifeid Button From Client Side (JavaScript)?
View 3 Replies
Jun 26, 2010
i am working in asp.net and csharp, we have 10 user, but certain user only need to put dataentry. how to enable and disable based on the user to access certain form ,like add, modify view options.
View 1 Replies
Sep 6, 2010
My requirement is that only the login page and the Register page should be accessible from anonymous users. I have created a new ASP.NET MVC project using the default template in VS2008. After that I have enabled security adding this section to the web config:
<authorization>
<deny users="?" />
</authorization>
Now the Register Action is not accessible anymore because of the security enabled. How I can do to disable security only for that Action?
View 2 Replies
Sep 30, 2010
How To Disable Video Downloading
View 1 Replies
Jul 24, 2010
how to disable sitemap link for a perticular user?
i have 2 columns one is UserStatus which is A/P(Approve / Pending)
2nd is POC =Y/N..
i want to check userstatus =A and POC = Y
and the link name (eg..abcd). at runtime only those users use this link whose status is'A' and POC is' Y'..(enabled
link to ths users)I want to disable this link to other users..
View 4 Replies
Feb 12, 2010
I want to force users to provide a username, but not a password. I want to use many features of the membership class, but in an environment where passwords are not required.I could set up a "UserName" textbox, and give all my users the same, hard-coded password, but I was hoping to find a more simple solution.[I know, this should NOT have been posted in a forum entitled "Security". "Insecurity" or "Vulnerability" would be more fitting, but...]
View 1 Replies
Dec 14, 2010
in my website Registation form is there when user register his details. when user first login in the website goes to
create client information page other pages are not accessible the first login user when his submit the client information
details he is intersted then admin gave permission he accessing other windows how to do that one give example
View 3 Replies