all groups > asp.net > may 2005 > threads for saturday may 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
add controls dynamically to table
Posted by chad at 5/28/2005 11:19:10 PM
Hi,
I am trying to add controls (textboxes, dropdownlist,...) dynamically
to the table. The problem is when the page is posted back, all of the
controls disappear and the table is reset to empty. I need to be able
to capture the data saved by the user that posted back from these
controls to s... more >>
ASP.Net 2.0 - Green arrow on controls
Posted by David Veeneman at 5/28/2005 8:56:01 PM
I'm just getting started in ASP.Net 2.0, using Visual Studio 2005. I've
noticed that all the controls have a small icon-- a green triangle in a
box-- in their upper left corner. I can't find the purpose of the icon--I
know it's not the smart tag that many controls have. Can anyone shed some
... more >>
Dear Dudes, How can I prevent HTTP access to my .MDB files?
Posted by Babbling Brooke at 5/28/2005 7:03:26 PM
Dear Dudes,
I have a hosted ASP.NET website, and I want to prevent HTTP access to my
..MDB database file. The following is in my web.config at root of website:
.. . .
<httpHandlers>
<add verb="*" path="*.mdb" type="System.Web.HttpForbiddenHandler"/>
</httpHandlers>
.. . .
However, thi... more >>
Adding a "Favorites" icon
Posted by Jordan at 5/28/2005 6:03:43 PM
I would like to add an icon to my website that would show if the site is
bookmarked.
I found this tag on the web:
<link href="images/favicon.ico" rel="shortcut icon">
However, Visual Studio shows this warning on the tag:
"The values permitted for this attribute do not include "shortcut i... more >>
Setting virtual path on Table controls
Posted by Nick at 5/28/2005 5:28:35 PM
Hi,
I have some simple html:
<table>
<tr>
<td background="~/images/category_background.jpg" runat=server></td>
</tr>
</table>
If I hardcode the path for the background, all is fine, but using the tilde
and runat server doesnt work. I need to work with relative paths, ... more >>
Label background in Mozilla with embedded html
Posted by NancyASAP at 5/28/2005 4:39:48 PM
I have a label on my ASP.NET form. It has a cssclass that includes a
background color.
I am dynamically putting text in this label. The text contains some
embedded html (I want to display part of label contents as a list so it
uses <ul> and <li>). The format of the string assigned to label tex... more >>
Usercontrol outputting html programmatically
Posted by Sosh123 at 5/28/2005 4:31:28 PM
Hi,
Could someone please explain to me the propper way of having a user
control spit out some html from code-behind (at the position it is
placed in the parent document)? I initially thought just
Response.Write, but I discovered that this dumps the output at the top
of the page regardles... more >>
GridView help required
Posted by Mark Parter at 5/28/2005 4:04:02 PM
I have a GridView control which is bound to a Stored Procedure (SP) using a
SQLDataSource. The problem I'm having is that the SP returns 4 known columns
and x amount of unknown columns.
I can use the AutoGenerateColumns feature to render all the returned columns
but I'm then having problem... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Strange file in my app. Don't know what it is . . .
Posted by Sandy at 5/28/2005 3:26:10 PM
Hello -
I have a strange file that I did not add to my app and don't know how it got
there.
It's in a folder called Login and the name of the file is "ve-AE.tmp"
It has text like:
000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
000000b0 00 00 00 00 00 00 00 00 00 00 ... more >>
Configuring AspNetSqlProvider to use a different database
Posted by John Bailey at 5/28/2005 1:58:01 PM
I need to configure the provider to use a database in SQL Server instead of
the SQL Express database default, but the admin tool does not give any
options to change the database. Does anyone know how to change this
configuration?... more >>
asp.net and flash
Posted by MSFT Developer at 5/28/2005 1:25:29 PM
We are going to develop an application that uses flash heavily in a ASP.NET
application. We are not sure how ASP.NET/HTML/C#/ADO.NET talks to flash. And
also how to test the performance of flash for large volume website. Any
information related to this is highly appreciated. Are there any tool... more >>
How to control vritual directory not requests dlls on top directory? thanks
Posted by davidw at 5/28/2005 12:50:40 PM
I have a website, in web.config, I have set several httphandler dll like
<httpHandlers>
<add verb="*" path="default.aspx" type="Link.MainHandler, link" />
....
I then create a virutal directory under the site, the vritual directory has
its own dll, but when I run files in the virtual dire... more >>
Twain Client Side
Posted by Bob Allen at 5/28/2005 11:10:46 AM
I am looking for a way to capture an image "twain scanner" or "webcam" from
a client machine without having to install my application on their machine
as an exe. So i am assuming it could be done thru the use of a client object
in the html page. Does anyone know of a good example or where i coul... more >>
Retrieving client's MAC address
Posted by Andy at 5/28/2005 9:23:50 AM
Hi all,
In a recent intranet project, I want to limit the access to my mobile
asp.net appl only to a set of authorized MAC addresses by determining
client's MAC address.
Is there any way to recognize client's MAC address in vb.net?
I'll appreciate any helps.
TIA,
andy
... more >>
Client side programming
Posted by I am Sam at 5/28/2005 5:07:01 AM
I need to write code on the client side to allow a user to select text within
a textarea control and then process the selected area based on a button click
in a toolbar I have created. I have successfully built a custom server
control to encapsulate buttons and a textarea control but I need t... more >>
Naive question: Crystal reports in ASP.NET
Posted by kd at 5/28/2005 4:59:15 AM
Hi All,
How to use crystal reports in asp.net?
kd... more >>
display messege box ???
Posted by asp.net_pro at 5/28/2005 4:56:01 AM
how can display messege box by script langauge vb runat server not javascript... more >>
ItemCommand event does not fire???
Posted by Jimmy at 5/28/2005 12:19:46 AM
Hi,
I built a webform with a repeater:
<asp:repeater id="rep1" runat="server" DataSource='<%# ar %>'>
<ItemTemplate>
<asp:Button Runat=server Text="<%# Container.DataItem %>" ID="Button1"
NAME="Button1"/>
</ItemTemplate>
</asp:repeater>
in my code behind the webform I h... more >>
|