| Thread | Last Post | Replies |
|
| executionTimeout problem | 29 Sep 2007 19:24 GMT | 2 |
I have run into a problem that I cannot explain easilly. We run an ASP.NET web application where sometimes needs to serve some long running operations. These long running operations run in a multithreaded component installed in COM+ that can take up to 7mins.
|
| IXmlSerializable | 29 Sep 2007 15:04 GMT | 2 |
I whave a custom membershipProvider which inherits from MembershiopUser also I want to implement IXmlSerializable. Is my following code correct. public class SSOMembershipUser : System.Web.Security.MembershipUser
:IXmlSerializable |
| System.Timers.Timer | 29 Sep 2007 14:29 GMT | 2 |
I've got the following skeleton in my HttpApplication (global.aspx) file: Public Sub New() MyBase.New() ApplicationTimer = New System.Timers.Timer
|
| question about <add assembly ...> tag | 29 Sep 2007 13:54 GMT | 3 |
i'm learning asp.net and i read this in the web.config of an application: <compilation debug="true"> <assemblies> <add assembly="vjslib, Version=2.0.0.0, Culture=neutral,
|
| possible? | 29 Sep 2007 11:38 GMT | 6 |
do you think that it's possible to build a nice web site in asp.net 2.0 C# without knowing anything about CSS?
|
| QueryString | 29 Sep 2007 09:56 GMT | 4 |
The ReturnUrl is: /Client/Admin.aspx Now I want to go to admin.aspx page. My following code doesn't work Response.Redirect(Server.UrlDecode(Request.QueryString["ReturnUrl"]));
|
| Newbie: Removing underline from Hyperlink | 29 Sep 2007 09:36 GMT | 1 |
I've added hyperlink objects to a web form & I would like to display them without the underline. How can I do this? The element in HTML appears to be <asp:Hyperlink thus in a stylesheet:
|
| TreeView root node image | 29 Sep 2007 09:29 GMT | 1 |
How can I make root node of a TreeView control to have different expanded and collapsed images from the rest of the tree? If I use "ExpandImageUrl" and "CollapseImageUrl" it applies to all nodes including the root. And if I use "RootNodeStyle-ImageUrl" the image
|
| custom membership | 29 Sep 2007 09:23 GMT | 1 |
I am using custom MembershipProvider. I have to implement a method ValidateUser. This method will call the web service to get the user. The user will then be saved to formsAuthcookie. if all goes well it will return true.
|
| ReturnUrl | 29 Sep 2007 09:20 GMT | 3 |
I have three pages. Login page, Default.aspx and admin.aspx. There is link inDefault.aspx page which redirects to admin.aspx page. But I want the ReturnURl as "admin.aspx" page and want to save that ReturnURl in Query string. But when I click on page it simply redirects me ...
|
| Hyperlink | 29 Sep 2007 09:16 GMT | 1 |
I have a link in my aspx page. When I click on that link it should take me to another page Login.aspx which is in another application named mysite. So path will be ~/mysite/Login.aspx. where I am passing AppID={0}&ReturnUrl={1};
|
| Stardard controls vs HTML controls | 29 Sep 2007 06:55 GMT | 1 |
Can someone tell me the rule for when to use a standard server control vs using an HTML control on an asp webpage? Thanks
|
| Show and Hide embedded GridView | 29 Sep 2007 01:16 GMT | 1 |
I have a GridView of contacts that contains an embedded gridview of multiple phones for that particular contact. I have a LinkButton on the contacts GridView that refers to the Select command and when I click it the embedded GridView of phones becomes visible. Now I would like ...
|
| xml serilazation | 29 Sep 2007 00:17 GMT | 2 |
am trying to inherits membership class and implementing IXmlSerializable but it doesn't work. public class SSOMembershipUser : System.Web.Security.MembershipUser ,IXmlSerializable
|
| carriage return in a textbox -> click a button? | 29 Sep 2007 00:09 GMT | 3 |
I've done this before by trapping keydown and checking for a CR, and then clicking a particular button based on which textbox the event happened. However, I was wondering if there's a simpler way to trap a carriage return in a textbox, and have it click a button?
|