problems understanding Authentication / Authorisation in ASP.NET 2.0.
Tue, 26 Aug 2008 09:28:13 -0700 (PDT)
hello,
I have problems understanding Authentication / Authorisation in
ASP.NET 2.0.
I have a simple WhoAmI.aspx page
protected void Page_Load(object sender, EventArgs e)
{
if (User.Identity.IsAuthenticated)
lblAuthentication.Text = "Authenticated user: " +
Us ...
|
GridView only sorting 1 direction
Tue, 26 Aug 2008 10:50:36 -0500
I have a GridView in ASP.Net 2.0 that is bound to a list of files in a
specified directory. The GridView has AllowSorting="True" and I have
sorting expressions on 2 columns (Name and LastWriteTime). I would also
like to have the initial display of the GridView in DESC order by
LastWriteTime. When I click ...
|
Remote desktop Access via web page
Tue, 26 Aug 2008 08:40:58 -0700 (PDT)
Hi,
I've got a page which displays IP and connection details for
customers' servers (for our support personnel) and I'd like to have a
button which creates a remote desktop connection to whatever server is
selected. I've got this code but all it does is create rdp access on
our web server rather than the user ...
|
ASP.NET Ajax Client Library
Tue, 26 Aug 2008 08:38:28 -0400
Hi,
How can I use Client Library to add an event handler to all text boxes
within a page?
I already googled it. A link to an online resource or sample would be a
great help.
Thank you,
Max
...
|
Two ContentPlaceHolders in the MasterPage
Tue, 26 Aug 2008 14:32:12 +0200
Hi,
Are there a way to show both ContentPlaceHolser's at the same time ??
The following code show two ContentPlaceHolders, but i don't know what to do
to make them both visible at the same time.
<body>
<form id="form2" runat="server">
<div style="height:100px;">
Some text
</div>
...
|
response.write giving error
Tue, 26 Aug 2008 17:48:15 +0600
Hi,
I'm working on an application whose code was written by some other developer
and I dont completely understand its source code right now. In one of the
pages where I'm writing a test code, at the end of the Page_Load event I
write a simple following line:
if (IsPostBack)
{
Response.Write("say");
}
...
|
Using Default Credentails with HttpWebRequest
Tue, 26 Aug 2008 04:51:01 -0700
Hi
I have a two virtual directories(say VD 1 & VD2) hosted on same web server.
Both are configured to use Windows NT authentication.
I hosted some web pages to VD1 and there is web service running on VD2.
I want to consume the web services (VD2) from the web pages (VD1). For that
I am using HttpWebReque ...
|
|
|
Display format of character columns in a gridview like Access?
Tue, 26 Aug 2008 04:50:00 -0700
I have a character(15) column filled with numbers, in my SQL database. I need
it to display like it does in Access when I set a format for the column, like
"000-000-000-000-000". How do I display the values the same way in a gridview
column? I can't manage to set the DataformatString properly.
TIA
...
|
ASP.NET Development Server as standalone ?
Tue, 26 Aug 2008 04:46:01 -0700
Sometimes, I need to transfer my development site .aspx files to another
machine in another city where I only have notepad and .NET 3.5. How can I use
the ASP.NET Development Web Server outside Visual Studio, to test my site on
the other PC? ...
|
Binding Gridview with Sqldatasource control
Tue, 26 Aug 2008 16:35:01 +0530
Hi All,
How can I bind the Gridview control to Sql Datasource control on a button
click(I see majority of the articles binding datasource at page load) I need
to enable the paging and sorting of the Gridview control also .Actually I am
able to bind the sql datasource control to the Gridview on button Click but
...
|