Search

You searched for the word(s): userid:865745

Matching Posts

  • Making web.config files

    Hello, I am trying to generate a web.config file for a newly created directory thatwould contain security permissions for a newly created user. Is this possible and if so how could I do so? Thank you, Peter Ryan, Jr.
    Posted to Getting Started (Forum) by pryanjr on 7/7/2009
  • Re: Making web.config files

    Thanks, I know about web.config files I want to know how to generate them automatically.
    Posted to Getting Started (Forum) by pryanjr on 7/7/2009
  • Re: Access rules are not working

    It is a little messy and it conflicts. try something like <?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <authorization> <allow roles="admin" /> <deny users="*"/> </authorization> </system.web> </configuration>
    Posted to Security (Forum) by pryanjr on 7/7/2009
  • Re: On button click Add a row with text boxes.

    Basically use the visible property, i.e.: <%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Protected Sub bMore_Click(ByVal sender As Object, ByVal e As System.EventArgs) tbAddress2.Visible = True End Sub Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) tbAddress2.Visible = False End Sub <
    Posted to Data Presentation Controls (Forum) by pryanjr on 7/7/2009
  • Re: Making web.config files

    On the creation of the user they are added to the "user" role and a directory is created for them but I am trying to automatically put a web.config file in the new created directory as well.
    Posted to Getting Started (Forum) by pryanjr on 7/7/2009
  • Re: Multiple DataFields

    That didn't work but yes, something like: <Columns> <asp:BoundField DataField="FileID" HeaderText="File ID" SortExpression="FileID" ReadOnly="True" /> <asp:BoundField DataField="FileName" HeaderText="Name" SortExpression="FileName" /> <asp:BoundField DataField="Uploaded" HeaderText="Uploaded" SortExpression="Uploaded" /> <asp:HyperLinkField DataNavigateUrlFields="FileName"
  • Re: Auto gen web.config

    That is okay if the data is lost but is there a way to make a web.config in a newly created directory with just the text below? <?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <authorization> <allow users=" CreateUserWizard.UserName "/> <deny users="*" /> </authorization> </system.web> </configuration>
    Posted to Security (Forum) by pryanjr on 7/4/2009
  • Re: Multiple DataFields

    Here is the GridView code: <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" CellPadding="4" DataSourceID="ObjectDataSource1" ForeColor="#333333" GridLines="None" DataKeyNames="FileID" Width="70%" EmptyDataText="You have not uploaded any files yet."> <RowStyle BackColor="#F7F6F3" ForeColor="#333333"
  • Re: Multiple DataFields

    RickNZ, Thank you for the help. I actually just made a new column with a url that is written on upload and return in a hyperlink field in a gridvie to quickly solve the problem, but thanks for answering and that advice was helpful. Peter Ryan, Jr.
    Posted to Data Presentation Controls (Forum) by pryanjr on 7/4/2009
  • Auto gen web.config

    Hello, Is there a way to automatically generate a web.config file with allow permissions for a newly created user and deny permissions for everyone else? Thanks, Peter Ryan, Jr.
    Posted to Security (Forum) by pryanjr on 7/3/2009
Page 1 of 10 (91 items) 1 2 3 4 5 Next > ... Last ยป