Web Forms :: Make A Aspx Page Read Only For A Particular Role?

Nov 12, 2010

I am new to .net, and I am having a problem that, I am having a couple of web pages which are accessed be two types of roles manager and users, my requirement is that any one with user rights should have only read only rights for a particular update.aspx page how can I do this

View 2 Replies


Similar Messages:

Web Forms :: Make A Connection From Aspx Page To Oracle

Feb 21, 2010

I want to setup a DB connection from aspx page and not from aspx.vb.

View 1 Replies

Web Forms :: Make Aspx Page Inactive After We Redirecting Once?

Jan 3, 2011

i had aspx page control for transferring the application datas to another web page. k when i click the transfer button. the Current page will be inactive. and the User only once time they can transfer the page otherwise disabled.

View 3 Replies

Web Forms :: Read And Import CSV File On ASPX Page And Display Results In HTML Table

Jan 24, 2016

Why do i get an error for the loop ? This piece of a script is in a asp file for reading my csv .

it needs to read all my rows in the csv ,, like now it gives me expected loop error 

if i put it under arrRows = split   it gives me only the last entry of the csv..

Do Until oInStream.AtEndOfStream
sRows = oInStream.readLine
arrRows = Split(sRows,",")
%>
<td><div align="center"><%=arrRows(0)%><br></div></td>
<td><div align="center"><%=arrRows(1)%></td>

[Code] ....

View 1 Replies

Passing Value To Another Page Using Https / Cannot Read The Control Values From Default.aspx Page

May 30, 2010

I need to force SSL when going to the final checkout page (for example from default.aspx to checkout.aspx).

I need to pass variables to this check out page and tried to use server.transfer(https://www.mydomain.com/checkout.aspx). I then use previous page .Fincontrol to read text box and label name to this check out page. If I only do the server.transfer("~/checkout.aspx") then my I can read all vakues of my controls from the passing default.aspx page.

But when I force https:// then I cannot read the control values from default.aspx page.

Please give me some tips on how to get control values to the https:// destination page or if you have another tips on how to do it the right way, please let me know.

View 8 Replies

Read Web.config Settings In .aspx Page?

Nov 11, 2010

I've created a web page and it contains some settings value in web.cofig for example images.So i want to give the path of images in Web.Config file and file name in that particular image src. I wanted to read that settings only in aspx page not in codebehind. For example Web.Config: <add key="ImagePath" value=[URL]> and in my aspx page, <img id="ImgHeader" runat="server" src="<%ConfigurationManager.AppSettings["ImagePath"]%>" />

View 2 Replies

Read An Aspx Page Response From PHP Site?

Mar 15, 2011

I am working in coordination with the pHp developer, he is sending me some username, key at my aspx page and on that basis i am checking the authenticity from the DB, if authentic user then i'll do response.write("YES"), if not then i'll do response.write("NO"). The PHP developer saying that he will read my response.write and on that basis he will allow the user to get logged in to his PHP site. i want to know how will he read My response.write from ASPX page. He was saying he will read it, and will put it in session, i am very confused how will he read my response.write.

View 1 Replies

Web Forms :: How To Read Encrypted Connection String In Role Manager

Jul 17, 2015

i don't know how to use a Encrypted ConnectionString with RoleManager in ASP.NET This is code in Web.config. 

<connectionStrings>
<add name="strConnectionString" connectionString="eF8w9r2UJOsk0Ps3pxmV7/Fy/xPR2hN2S7BrC1iOYNnAUaI8AqkSm5bw7r+ta4sePWSV9t/3Spnpz6wsFpvMmcppNpqM5Zk7iiDqWVgIV4k="/>
</connectionStrings>
<roleManager enabled="true" defaultProvider="CustomizedRoleProvider">

[Code] ....

And in project I create a library to read web config

 private const string ConnectionStringKey = "strConnectionString";
private readonly string SQLConnectionString =
Security.DecryptString(ConfigurationManager.ConnectionStrings[ConnectionStringKey].ConnectionString);

if I change my ConnectionString like this, it's working: 

<add name="strConnectionString" connectionString="server=My-PCMSSQL2008; database=MyDB; uid=sa; pwd=passw0rd;"/>

But I want my ConnectionString Encrypted so i use

 <add name="strConnectionString" connectionString="eF8w9r2UJOsk0Ps3pxmV7/Fy/xPR2hN2S7BrC1iOYNnAUaI8AqkSm5bw7r+ta4sePWSV9t/3Spnpz6wsFpvMmcppNpqM5Zk7iiDqWVgIV4k="/>

So when i running website it throw error:

System.ArgumentException:Keyword not supported: 'eF8w9r2UJOsk0Ps3pxmV7/Fy/xPR2hN2S7BrC1iOYNnAUaI8AqkSm5bw7r+ta4sePWSV9t/3Spnpz6wsFpvMmcppNpqM5Zk7iiDqWVgIV4k='.

Line 46: string[] roleNames;
Line 47: roleNames = Roles.GetAllRoles();

View 1 Replies

Web Forms :: How To Make Default.aspx Or Homepage A Secure Socket Layer Page

Sep 1, 2010

1)How to make Default.aspx page a Secure socket layer page?

2)How much code does this take?

3 Is it easy ? i have no idea how this works

View 3 Replies

Forms Data Controls :: How To Make The Images On Page (Picture.aspx) Refresh

Nov 9, 2010

Page (Picture.aspx) using a repeater displays the image --->
http://postimage.org/image/iyl7rv1g/After click on link Delete opens a new page (DeletePicture.aspx) andimages in the database set to passive stateand this page(DeletePicture) closes.How to make the images on page (Picture.aspx) refresh
and passive image is not visible.

View 2 Replies

JQuery :: Read Ajax Values In Aspx.cs Page

Nov 8, 2010

I'm how do I read the posted data. e.g. startRow in the aspx code behind page. Here is the ajax

$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Default2.aspx/GetPageLinks",
data: "{isbn: '" + startRow + "'}",
dataType: "json",
success: function(msg) {
DisplayReviews(msg.d);
}

View 2 Replies

WebRequest To Read Aspx Page To String, Access Denied?

Oct 24, 2010

I'm trying to make an executable in VS2008 that will read a webpage source code using a vb.NET function into a string variable. The problem is that the page is not *.html but rather *.aspx.

I need a way to execute the aspx and get the displayed html into a string. The page I want to read is any page of this type: [URl]

I have tried the following code, which works properly for html pages, but generates the wrong source code with "access denied" for the page title when I pass in the above aspx page.

Dim myReq As WebRequest = WebRequest.Create(url)
Dim myWebResponse As WebResponse = myReq.GetResponse()
Dim dataStream As Stream = myWebResponse.GetResponseStream()
Dim reader As New StreamReader(dataStream, System.Text.Encoding.UTF8)
Dim responseFromServer As String = reader.ReadToEnd()

View 1 Replies

Web Forms :: Make Sure Hitting Enter On The Page In Any Other Text Box Doesn't Post Back To SearchPage.aspx?

Feb 28, 2010

I have a master page which includes a search textbox and a button which posts back to another page. The controls are defined as follows:

<asp:TextBox
ID="SearchTextBox"
runat="server"
style="margin-left:
0px"
Width="170px" />
<cc1:TextBoxWatermarkExtender
ID="SearchTextBox_TextBoxWatermarkExtender"
runat="server"
Enabled="True"
TargetControlID="SearchTextBox"
WatermarkCssClass="watermark"
WatermarkText="Search Name" />
<asp:Button
ID="SearchButton"
runat="server"
Text="Search"
PostBackUrl="~/SearchPage.aspx"/>

The problem is that for any other TextBox on the page which is using this MasterPage, for example the login page, if you type your user name and password and hit Enter, The page is redirected to the SearchPage. If you click on login buttton everything works fine. How do I make sure hitting enter on the page in any other text box does not post back to SearchPage.aspx?

View 2 Replies

VS 2008 - How To Make ASPX Page With Textboxes

Sep 21, 2010

I want to make ASPX page with textboxes and dropdown to insert the data into the database and Gridview to display all the data. I wnat some good designs, how can I make the page more attractive with just textboxes,dropdown ,buttons and gridview.

Do somebody have good aspx page, paste just the design here.

View 5 Replies

Make Call From Javascript Slider Through Aspx Page

Mar 1, 2010

I've created a C# function which extracts data from an mssql database, formats it to a json string and returns that. Now I need to make a call from my javascript (jQuery) slider through an aspx page that is related to the C# code file. I have actually never done anything like this before, from what I could tell by googling I need to use xmlHttpRequest, but how exactly do I make the function get hold of this string? It would be awesome if someone had some example code that shows how this works.

View 2 Replies

C# - How To Make A Reference To Public Const String From Aspx Page

Jun 23, 2010

How to make a reference to public const string from aspx page with c#

In VB its <% = MY_DATA%>

View 1 Replies

Configuration :: Make Complied Version Of The .aspx Page Web Application?

Jun 7, 2010

I want to make a deployment package for my asp.net 3.5 application. Actually i have to send this to my client who would run this application on his intranet. I tried setup n deployment package type project and it created .msi file.while installing this it create all the files which are lying in the project application. But i want to send all the files in complied format only not directly code files.

How could i convert the aspx.cs files into nonreadable complied files..

View 4 Replies

JQuery :: How To Make Aspx Page With Content Loaded Visible To SE Spiders

Mar 18, 2011

I build my website in jquery manner. On document-complete I request data from server (by page method) and put it into html by jquery template. So, I wonder, would this HTML be visible to Search engines crawlers? And if not, how to make it visible? Is there a common solution? Or is it a great disadvantage if jquery?

View 3 Replies

Make Administrator Create Users From A Specific Role

Mar 19, 2011

I've been reading about asp web administration tool. I read about creating roles and stuff and forcing a controller to use authentication in order to be viewed. My question is, say create on the administration tool a user called Peter and I assign him the Administrator role. Then I want to create another role called LimitedAdministrator. But I want Peter to create new users on his View (I'm using MVC). Can anyone point me in the direction of how to do this.

I want peter to see on his page, like "Create user" and this user will be created as a LimitedAdministrator.

View 1 Replies

VS 2008 - Role Based Authorization For ASPX Pages

Aug 2, 2011

I am having a very simple intranet site. I took the sample for my project from [URL] ....

I have integrated windows authentication with Role based authorization. There are only 3 .aspx pages and I have a tree view control on the master page. depending on the choices that the user's make on the tree view control the .aspx pages gets displayed.

There are only 2 active directory groups. Sales and Marketing. My network id is not in Sales AD group.So obviously it prompts me to put userid and password and it throws not authorized error when i try to access PortfolioData.aspx page. So far so good.

But I am a member of AD group MARKETING. I should be able open the page Schedules.aspx (please see the config file below). But I still get the Error message 401.2.: Unauthorized: Logon failed due to server configuration.

Code:

<!--
<authorization>
<allow roles="domainADGROUP_SALES"/>
<deny users="*"/>
</authorization>

[Code] .....

View 2 Replies

Web Forms :: How To Write Aspx Page HTML From Aspx.cs Page On Page Load

Dec 1, 2010

i want to write aspx page html from aspx.cs page on page load..

i hav already used div.innerHtml...

i want to write below code in aspx page from aspx.cs page

[code]....

View 5 Replies

Web Forms :: Make Url More Simple And Easy To Read For Search Engine

Mar 3, 2011

I have urls like this in my application: [URL]

Iphone, Ericsson, LG, HTCDesire are simple products and that is fine. It is the tabid/61/Default.aspx
I'd like to get rid of so that urls would look like these instead: [URL]

what kind of coding needs to be done here because I have a .Net open source CRMsystem that is native with these tabid/61/Default.asp but I'd like to override it with added VB.net code

View 2 Replies

Web Forms :: Change Text And Make Read-only After Dropdown Is Selected?

Feb 15, 2011

I think this is almost impossible but I would like to ask.

I have a dropdown in my page:

The Name Dropdown is combined with item name / manufacturer name

This is what I want to do:

When a manager select a name, The text on the dropdown change to only item name and read only. (example: 44 inch Side Brushes)

The Manufacturer Textbox automatically retrieves the manufacturer name and read only.

View 5 Replies

Security :: Make Login.aspx Called By A Form At Page Load And Return To It After Successful Login

Apr 12, 2010

A Login.aspx has been created to enforce security on several forms of a web site.How can it be best called by each form at page load and return to that form after succesful login? How could that requirement be declared in web.config?

View 3 Replies

Web Forms :: How To Embed A Child Page (aspx) In A Master Page (aspx)

Apr 14, 2010

what i wanna do is:

there is an dropDownList in the master page with 4~5 items.

i've prepared 4~5 sub-page related to the above item. when the dropDownList.ItemChanged, the subpage content will show their own page.

use html iframe to include another aspx page.

in my cs code:

[Code]....

but when i change the item in the dropdownlist, the error pops up:

[URL]

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved