| Thread | Last Post | Replies |
|
| Change of new values during the (FormView_Updating) event does not work | 09 Sep 2007 06:44 GMT | 2 |
I cannot understand what is wrong with the following code. All I want to do is to change certain values of a DateTime column during FormView updating event. Right now this event handler returns Null values to the Database. Looking for expert advice.
|
| Server-side controls repositing long client forms to top | 09 Sep 2007 00:22 GMT | 4 |
Whenever an ASP.NET server-side control is processed, the client form is repainted from the top forcing users to scroll back to where they were on long forms. How can I work around this issue? For example run this, scroll down and click the left check box:
|
| Lossing my session variable | 08 Sep 2007 12:49 GMT | 4 |
I use the following code to set a session variable for people I have authenticated to my site: For Each row As DataRow In foundRow Session("Login") = row.Item(1).ToString
|
| How to use membership classes with multiple 'projects'...? | 08 Sep 2007 10:52 GMT | 3 |
My current classic-ASP site has users, projects, roles and the 2.0 membership looks like a perfect fit, but I'm having trouble finding examples of how to have users that belong to different projects, and have different roles per project.
|
| Cannot debug remotely | 08 Sep 2007 02:27 GMT | 1 |
Hi, i can't seem to enable remote debugging, no matter what changes i try in web.config. I may have a non standard setup: -Windows 2003. -ASP classic website on d:\inetpub\wwwroot, which gets served as
|
| Cannot connect to db using public user | 08 Sep 2007 01:38 GMT | 2 |
Pls Help I open a connection to remote sql server Connection String: Provider=SQLOLEDB.1;User Id='user';Password='pwd';Initial
|
| LinkButton Visited Link on ASP.NET Gridview Issue | 08 Sep 2007 00:26 GMT | 4 |
Hi, I have a ASP.NET 2.0 Web Application. Many of the pages use the ASP.NET GridView with paging and sorting. One of the columns of this Gridview is a template column (LinkButton). The data being retrieved and showed in this GridView produce more than one page
|
| ContentPlaceHolder Problem | 07 Sep 2007 23:36 GMT | 2 |
I'm trying to use the Master Page/ContentPlaceHolder structure for the first time. I created a master page with a banner and a table with 2 rows (body and footer) with the top (body) row split into 3 columns, the first for a navigation treeview, the second as a separator and the ...
|
| DropDownList SelectedValue lost between ItemDataBound and PreRender | 07 Sep 2007 22:16 GMT | 2 |
I am populating a dropdownlist in a DataList's ItemTemplate then setting it's SelectedValue in the dropdownlist's ItemDataBound property. However when the page is displayed the dropdownlist's Selected Value is set to the largest value so that the bottom
|
| ASP.NET server control property bind. | 07 Sep 2007 21:37 GMT | 1 |
Is there any syntax in ASP.NET to bind some value to server control without need of calling DataBind method? I have this statement: <att:timeZone id="timeZone" runat="server" SelectedIndex="<
|
| Gridview horizonal cell spacing/padding | 07 Sep 2007 21:30 GMT | 2 |
Is there a way to set the horizontal cell spacing or padding of a gridview without setting the vertical spacing/padding? I'd like to be able to put some space between the columns without putting space between the rows. Thanks,
|
| GridView | 07 Sep 2007 20:40 GMT | 1 |
I have the following hyperlink in my GridView. I want two values to be passed on to another aspx page when I click on hyperlink. <asp:HyperLinkField DataTextField="proxy" HeaderText="Proxy" NavigateUrl="~/Proxy.aspx"
|
| How change Connection name for Dataset | 07 Sep 2007 19:45 GMT | 2 |
Using ASP.NET 2.0 Created DataSet1.xsd. It's using the Connection "ASPNETDBConnectionString (Web.config)". I want to use a different one, LocalSqlServer. How do I change it?
|
| Membership - Getting user id | 07 Sep 2007 19:44 GMT | 1 |
I like to grab the user id of the currently added user. However, I can't find a property that would do it. MembershipUser newUser = Membership.CreateUser(tbxUsername.Text, tbxPassword.Text,
|
| Can someone help me stop repeating code? | 07 Sep 2007 18:51 GMT | 8 |
I have this code that appears at the top of every page I have tried putting this into my master page, however, the error message doesnt appear when I do this even though I have the variables declared in the other pages.
|