| Thread | Last Post | Replies |
|
| listbox item font | 19 Jul 2005 06:38 GMT | 3 |
Hey Guys. I'm making an asp.net app and I have a question regarding listboxes. I have a list box and I would like some of the items to be bold based on certian criteria. Is this possible?
|
| Cookieless forms and Privacy | 19 Jul 2005 03:26 GMT | 1 |
I have built a site with some secure pages, in a subdirectory with anonymous access off, and cookeless forms security. I thought that this would be accessible to all without the need for Low Privacy setting. In fact the users still need low privacy.
|
| How to refer to dynamically created objects? | 19 Jul 2005 02:39 GMT | 3 |
I want to make a reference to a dynamically created asp:checkbox: string strcheckboxname ="chkbox1"; ((CheckBox)Table1.Rows[i].FindControl(strcheckboxname)).Visible = true; Unfortunately this does not work? what would be the right way of doing
|
| Graphical interface for Dev newbie | 19 Jul 2005 02:32 GMT | 3 |
I was wondering if anyone might be able to help. I am a non developing tester for a software house with an art degree.....odd I know......and wanted to have a play with ASP.Net. The new product that we are developing in ASP.net has been put together
|
| Grid within a Grid ItemDataBound event problem | 19 Jul 2005 02:17 GMT | 4 |
Im trying to create a grid within a grid programmatically. Ive been successful in doing this but I need the embedded grid to fire its ItemDataBound event so I can handle it. The event does not seem to fire for some reason. The code is below.
|
| Cookies and RFC 2109 | 19 Jul 2005 01:31 GMT | 5 |
it does not seem that the HttpCookie class is in compliance with the rfc 2109, it does not expose the optional comment attribute, even asp.net 2.0 beta 2 has this problem and frankly speaking I do not understand why a new version of the framework that pretends to stay runinng for ...
|
| Reports in ASP .Net | 19 Jul 2005 00:52 GMT | 2 |
Okay, in ASP .Net 2.0, is there a trick to making images show up in the reports. I have created several local hosted reports, and I am trying to add images to the reports. I have tried both external and embeded image types, but neither show when I view the report.
|
| How to Debug ASP.NET Application with Variable QueryString | 19 Jul 2005 00:45 GMT | 1 |
I am writing an ASP.NET 1.1 application that will be invoked with a number of input QueryStrings using VS.NET 2003 Enterprise Architect. How can I set the input URL in the project settings to debug it with a variable input QueryString. For example, in one case I'd to debug it ...
|
| keeping asp.net pages warm | 18 Jul 2005 23:33 GMT | 3 |
has anyone succesfully used an approach that I read somewhere suggesting that after deploying asp.net application, one can create a windows service or scheduled task that requests for asp.net page from that application so that it is compiled at all times? This is to avoid long
|
| How do I get at a control in the header template of a repeater? | 18 Jul 2005 23:18 GMT | 4 |
If I have a control in the header template of a repeater, how do I get at this in code? I know how to do this for an ItemTemplate, you just do... txtFred = (TextBox)rptNpVars.Items[i].FindControl("txtFred");
|
| question on using integrated secuity in DB call. | 18 Jul 2005 22:49 GMT | 2 |
I would like to use integrated security for DB connection for my ASP.NET applications. Since these apps have different databases (SQL Server), I want each app to be able to access its own database. Say if I have 10 apps, I'd need 10 logins, one login for each DB. Now throw in the ...
|
| response.addheader | 18 Jul 2005 21:56 GMT | 4 |
Hello, i have a problem, i must to make a response.redirect, with a fixed header (authentication header) but i dont know how to do it... i make this, but im stuck here... Dim strURL As String = "http://localhost/webapplication1/webform1.aspx"
|
| Updating Application Settings | 18 Jul 2005 21:47 GMT | 3 |
Without using a database, what is the best way to store application settings that need to be updated by a webmaster? I would like to provide a configuration screen for the webmasters who use my asp.net application. The application does not use a database so I cannot store ...
|
| File object or Persist | 18 Jul 2005 21:34 GMT | 2 |
I'm having hard time using FileInfo object. Using aspupload component from Persist I can view the file like object.FileExist(absolutePathToaFileOnNetwork) works but it fails with FileInfo object with a file present on another machine on
|
| How to implemt a simple web listener in asp.net/vb.net | 18 Jul 2005 21:26 GMT | 6 |
I need to implement a simple application that listens for web requests on a well-known URL, grab the request , which is an XML document, and send as respnse an XML document. each client sends a first request and I return failure or a session ID which
|