| Thread | Last Post | Replies |
|
| Using two stored procs instead of two queries? | 27 Jan 2006 21:35 GMT | 2 |
Hey all, Here's a small VB codeblock that connects to a database and uses 2 SQL queries then forms a relation for a master/detail view on the aspx side: Private Sub Binddata(ByVal name As String)
|
| Daily Calendar control | 27 Jan 2006 21:30 GMT | 1 |
I am looking for Daily calendar control for my ASP.net project. (c#) Where can i download it?? (prefereble ,for free...) The daily calendar or diary suppose to look like the daily task scheduler in OUTLOOK.
|
| Is server cache reloaded everytime when web.config changes? | 27 Jan 2006 21:11 GMT | 1 |
My web app is reading data from web.config and cache it right away. I was testing it on production server, but I noticied that every time I change .config file it reads new data, rather then pulling it from cache. Is it by design or my caching is not working correctly? Thank you
|
| Change Control Access Modifers in ASP.NET 2.0 | 27 Jan 2006 20:52 GMT | 2 |
How can i change the access modifier of a control from protected to public if the designer code is not visible to the developer? I tryed declaring it on the page but it throws a compile error saying that the control has already been declared as protected.
|
| Installed VS 2005 professional. I see SQL expres also installed as part of it. But where do i get the Management Studio from? | 27 Jan 2006 20:37 GMT | 4 |
we can download the Management Studio Express for free from MS website. I did the same thing on my personal laptop. But can we develop applications using free downloaded Management Studio and deploy later on with the free stuff at work?
|
| Bind nested datalist to objectdatasource | 27 Jan 2006 20:31 GMT | 2 |
I have a datalist (DataList1)... with an itemtemplate... then a table - server side (Table1)... then another datalist (DataList2)...
|
| ViewState | 27 Jan 2006 20:29 GMT | 4 |
I saw this code (ASP.NET/VB.NET): ViewState("strSite") = strSite ViewState("strCaseMgr") = strCaseMgr What is this ViewState?
|
| How to add FormsAuthenticationTicket to URL | 27 Jan 2006 20:25 GMT | 1 |
The codes below is copy from msdn about FormsAuthenticationTicket. It add FormsAuthenticationTicket to cookie. How can I add the FormsAuthenticationTicket to URL not to Cookie?
|
| Session.Abandon() | 27 Jan 2006 20:13 GMT | 1 |
I am trying to free up some memory by forcing a session.clear and a session.abandon. When I startup the application, it starts at about 80,000 KB of memory in the aspnet_wp.exe. I am able to load a huge data table into a session variable and watch my aspnet_wp.exe (w3wp.exe on ...
|
| Force ASP.NET shadow directory to update? | 27 Jan 2006 20:12 GMT | 2 |
I have an application which loads plugin DLLs from various directories on the local disk. To avoid problems with the DLLs being locked by IIS, I have modified my code so that it copies the DLLs to the /bin/ directory if it determines that they are newer than the version already ...
|
| Weird Compile Error | 27 Jan 2006 20:04 GMT | 1 |
When I compile my VS2005 website I get this weird compile error. The line it points to a constructor for a class that is used throughout the website. Even more bizarre when I click on the underlined method (WebUser) VS2005 opens up a file called WebUser [from MetaData]. Can you ...
|
| Weird Compile Errors Continues | 27 Jan 2006 20:04 GMT | 1 |
I am getting this error when I compile a VS2005 web project: The name 'dgdANSI835' does not exist in the current context. This web project has been compiling fine. All of a sudden the code behind cant see the datagrid. The aspx has the datagrid in it. Just for kicks if I explicitly ...
|
| Help Pls - declarative data binding | 27 Jan 2006 19:50 GMT | 4 |
I am trying to do something like this in html: <% if(user.isBrowseActive()) { %><td nowrap="nowrap" class="browse"><a href="swzBrowse">Browse</a></td><%}%> except I want to replace the user.isBrowseActive() with a declarative
|
| Adding a CheckBox to a DataGrid at Runtime | 27 Jan 2006 19:41 GMT | 3 |
I have a DataGrid that I'm adding CheckBox controls to at runtime (in the code behind) and I'm not sure if I'm doing it correctly. First of all, I noticed that the MyDataGrid.Columns.Add() method expects a DataGridColumn so I instantiated an object of type TemplateColumn that
|
| ASP.NET 2.0 Databind during Client Callback | 27 Jan 2006 19:29 GMT | 2 |
I am trying to bind to a GridView or DetailsView after a callback using the ClientCallback Manager in the new .NET 2.0 framework. See below for the HTML followed by the VB code: <html xmlns="http://www.w3.org/1999/xhtml" >
|