all groups > asp.net > april 2007 > threads for sunday april 8
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
Hiding a textbox In ASP.NET
Posted by psychomad at 4/8/2007 11:41:26 PM
hi,
can someone help me?! I'm trying to hide a textbox in my ASP.Net
source code, but it's not working!
This is part of the HTML code that i want to be hidden!
<tr>
<td style="width: 170px">
Product Number:</td>
<td style="width: 214px"><asp:tex... more >>
Reference problems [The type 'System.Data.SqlClient.SqlCommand' exists in both ]
Posted by Jeff at 4/8/2007 11:05:00 PM
ASP.NET 2.0
I have a webproject using n-tier design. The DAL for Sql Server 2005 is
placed in a separate class library project named SqlServer2005. I assume the
folder name(DAL_SqlServer2005) in the error below is generated because
SqlServer2005 inherits from DAL (DAL is a class in my proje... more >>
Accessing base class in User Control
Posted by chakris at 4/8/2007 9:24:01 PM
Hi All,
I am developing a web application using VS 2005 asp.net 2.0 with C#. I have
my base class in "App_Code" folder and i have another folder called "Users"
where i have developed a user control called users.ascx. Now in my Users base
class i have some properties like FirstName,LastName ... more >>
How to call javascript function from code behind
Posted by verci at 4/8/2007 8:43:59 PM
Hi guys,
I'm running asp.net 2.0.
Does anyone know how to fire or call a javascript function from inside my
(VB.aspx) code without assigning it to a control attribute?
thank you
... more >>
how to create an ASPNET.mdf file?
Posted by Mich at 4/8/2007 8:37:47 PM
Hi,
i'm building an web application for anonymous users. They can take a look in
the website, nothing more. In order to perform other actions, the anonymous
user must be logged. So i create an aspx page with the CreateUserWizard
control. The user can fill his username, password etc ....
... more >>
Retaining highest resolution of a photo in upload?
Posted by RickVidallon at 4/8/2007 4:12:31 PM
I have a .Net application written in C# where members may upload their
photos and have them displayed on our website. We are trying to
maintain the best quality using best settings in .Net for this.
A good commercial comparison is as follows;
I uploaded a photo to www.flickr.com. http://www.fl... more >>
Type HTML into a textbox and automatically create .HTM files?
Posted by Mike at 4/8/2007 2:30:02 PM
Hi. I have an ASP.NET 2.0 app where users must type-in HTML into a
multi-line textbox, click a button, and then the respective HTM page is saved
in the project. How do I go about doing this? Right now I have a webform
with a multi-line textbox and a submit button, but nothing else. Could
... more >>
Websites require a login
Posted by Kat at 4/8/2007 1:15:54 PM
Every time I attempt to run a localhost website, it asks me for a login, as
if I am not a user on the local machine. I am a user on the local machine,
I am an admin on the local machine. I am not on a network. I have windows
xp professional installed, iis is installed and until recently eve... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Web User Controls with multiple child elements
Posted by Douglas at 4/8/2007 9:09:34 AM
Hi all,
Here's a simplified example of my problem. I'm looking to have code
like this on an .aspx page:
<cc:Cameras runat="server">
<Camera Name="EOS 400D" />
<Camera Name="EOS 350D" />
</cc:Cameras>
And render HTML something like this:
<ul>
<li>EOS 400D</li>
<li>EO... more >>
FormsAuthentication and Local Intranet Zone
Posted by C. Moya at 4/8/2007 9:06:04 AM
I'm a bit stumped by this one: It seems that when I connect to my
application using the server's intranet name (http://intranetserver/MyApp/)
FormsAuthentication kicks back the user to the Login page after I call
RedirectFromLoginPage. It works fine if I access the server by IP address
(http... more >>
<form> syntax
Posted by Coward 9 at 4/8/2007 7:33:01 AM
HI,
I saw in an example hello.aspx, there is a <form tag> being used like
<form runat="server>
I search all html tag references and could NOT find "runat" attributes
for <form> tag.
which reference should I use in order to find that?
Thanks,
... more >>
Whats wrong with this code
Posted by ThatsIT.net.au at 4/8/2007 1:12:46 AM
Dim dis As System.Data.DataSet
If System.Web.HttpRuntime.Cache("search" & find) = "" Then
dis = oSearch.plainSearch(find, catelog, whereas)
System.Web.HttpRuntime.Cache("search" & find) = dis
Else
dis = CType(Sy... more >>
selecteditemStyle
Posted by Just Me at 4/8/2007 12:00:00 AM
I am using ASP.NET 2.0 and a menu.
I have the menu working ok except for one thing. I cannot get it to apply
the selectedItemStyle class name to the menu item which has been clicked on.
Here is some more information
a.) I have the menu in the site1.master
b.) I have double checked that... more >>
|