| Thread | Last Post | Replies |
|
| Request.Form Problem | 17 Oct 2005 23:19 GMT | 2 |
I seem to be having trouble using the Request.Form property. Before explaining what I'm trying to do, have a look at my html: <form id="Cart" method="post" action="ShoppingCart.aspx"> <table id="items" cellpadding="0" cellspacing="0">
|
| Java script and screen scraping | 17 Oct 2005 22:57 GMT | 2 |
I have a problem with logging into web site via screen scraping. User name and password field contain 'name' property, and therefore I can easily do assignment to them: "userid=uidTest&password=pwTest" However, submit button represented on page via hyper link:
|
| How to refresh Session ID? | 17 Oct 2005 22:44 GMT | 2 |
I wanna refresh the session ID after session terminated. I called session.abandon() to end the session. However, when I use same PC client to login the system.....the session id is same as previous session, how to refresh the session ID in this case?
|
| Removing return characters from a string | 17 Oct 2005 22:37 GMT | 1 |
I have a multi-line entry box that the users can enter text. Is there a way I can strip out the return characters before saving it to the database? Thank you!
|
| Bypass username/password dialog when accessing remote network | 17 Oct 2005 22:08 GMT | 1 |
I am writing some code to access share folder on a remote network. DirectoryInfo dicInfo = new DirectoryInfo("remoteNetwork\shareFolder"); if (dicInfo.Exists) {
|
| HttpContext.Current.User.Identity.IsAuthenticated | 17 Oct 2005 22:00 GMT | 2 |
Quick question - does HttpContext.Current.User.Identity.IsAuthenticated perform a hit on the database if using forms authentication? Just wondering if I should perform this once when a user logs into my site then store in a session as to not repeatidly hit the database as
|
| Check if .NET Framework installed on web browser. | 17 Oct 2005 21:19 GMT | 8 |
Microsoft Internet Explorer sends a user agent string contains .NET Framework version if it is installed. But not all the users use MSIE. Some people use FireFox or Opera. Is there any way to check if .NET framework installed on a web browser?
|
| getting info out of a form's submit method | 17 Oct 2005 20:28 GMT | 3 |
When I have client-side script like this - document.forms[0].submit('test') how do I access, from server-side code, the value I put in the submit method?
|
| Application Restart: What is it? | 17 Oct 2005 20:13 GMT | 2 |
Friends, We have been experiencing unexpected Application Timeout issues in our ASP 1.1 application. We eventually read-up on aspnet_wp (or w3wp) "recycling" and various related concepts configuration settings. I did a post here
|
| Blank page in debug mode in VS2005 | 17 Oct 2005 19:18 GMT | 1 |
Got a strange problem last night - after building new page using Master pages I tried to view the page in browser (using standard F5 run) but all I got was blank page. The strange thing is that HTML code IS actually there when I select View source code... option. I'm suspecting
|
| I have confirmed a serious bug in ASP.NET | 17 Oct 2005 19:16 GMT | 1 |
If I have two classes with identical names in different projects, putting a breakpoint on one class causes other breakpoints to be set in the other. Runtime execution then uses the other project's file. Paul
|
| How do I fix this error: "The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to " | 17 Oct 2005 18:37 GMT | 11 |
Hi all. I am using W2K3, .NET2 on a machine running AD and Exchange. I started getting the message below last week. I googled the error and not much was returned, but I did find this; http://forums.asp.net/918725/ShowPost.aspx
|
| convert date 01/01/0001 to empty string | 17 Oct 2005 18:19 GMT | 1 |
I have a property date in the object data sourse which bind to Detailview, when this date property is null , it will display the date 01/01/0001, how can I convert it to empty string or make it blank ? Thank you much very in advance
|
| Is SQL Server 2005 Express is the only choice to work with Login controls? | 17 Oct 2005 18:06 GMT | 5 |
I try to use the Login control newly provided in VWD 2005 Express. It is said in the online help that it must have SQL Server 2005 Express installed to save the credential infomation. For SQL Server 2005 Express is still in beta and it provides little management tools, it's ...
|
| Populating ddl using hashtables | 17 Oct 2005 18:00 GMT | 1 |
I have a hash table declared in a class. how do i bind it to a dropdownlist in a webform?
|