all groups > asp.net > january 2004 > threads for friday january 2
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
OT: Picture Gallery
Posted by John at 1/2/2004 7:44:24 PM
Hi
Anyone knows of a reasonably well written picture gallery asp.net app that I
can integrate into my site?
Thanks
Regards
... more >>
DataGrid - used to work.. not any more
Posted by Hermit Dave at 1/2/2004 7:39:07 PM
Hello folks,
Attaching some code from one of my pages... the paging on this page used to
work just fine.... when i click next it doesnt even come anywhere near the
DataGrid1_PageIndexChanged handler... tried step by step debug... just exits
after the page_load when i try to move to the next pa... more >>
MAKE MONEY WITH $6
Posted by kcam300 at 1/2/2004 6:55:54 PM
Thursday, January 01, 2004
HOW TO TURN $6 INTO $6,000!!!!!!
READING THIS COULD CHANGE YOUR LIFE! I found this on a bulletin board
and decided to try it. A little while back, I was browsing through
newsgroups, just like you are now, and came across an article similar to
this th... more >>
Help me with IsPostBack
Posted by Alan Pretre at 1/2/2004 5:52:45 PM
I have a a WebForms.Table control that I am populating in Page_Load(). One
of the columns has cells with a button in each row, which I wire up to its
Click event handler. Everything is fine if I don't condition the table fill
on IsPostBack. But if I use IsPostBack, like so:
Page_Load()
{
... more >>
Another Simple Question, Dynamic formatting
Posted by Chris at 1/2/2004 5:18:02 PM
Sorry to ask such a simple question but here it is, and I'm am new to
ASP/WEB
I am designing a site and I want to make it general so I can easily change
the font/color/sizes of the tables/datagrids on the fly. Do I have to load
in the scheme I want and adjust every attribute myself or is ther... more >>
Textbox Focus
Posted by Tina at 1/2/2004 5:10:26 PM
I have a data entry web form. When the aspx page appears I want the cursor
to be setting in textbox2 so that the user does not have to pick up the
mouse and click in that textbox before entering data. How can I do this?
thanks,
Tina
... more >>
Selecting from Dropdown with Keyboard
Posted by Gary at 1/2/2004 5:04:18 PM
I would like for my DropDownList to be completely selectable from the
keyboard i.e. as the user types letters it hones down on the selection as it
can in windows. I know that if I put focus on the DDL then one letter can
be typed and it will select the first entry with that letter. but then it
... more >>
Catch html output of https page..
Posted by Lorenzo at 1/2/2004 4:41:51 PM
I've a web site with a classic asp login page, another where in a textbox i
write a sql query and a third that shows the resulset of the query....
Now i want to create an asp.net application that have only one page with 2
textbox for login, a textbox where i'll write the sql query and a textbo... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
COM+ object calling
Posted by Bruce Whitehouse at 1/2/2004 4:39:36 PM
Is it possible to call a VB6 object, thats configured in COM from a VB class
file?
If so, how?
I keep getting errors.
regards,
Bruce Whitehouse
... more >>
SQL server 2000 and ASP.NET
Posted by Thomas Storey at 1/2/2004 4:34:59 PM
Hi all,
For the last couple of years I have been using regular ASP to code my web
pages, but now I would like to get into ASP.NET
Ive been playing around a little but have not been able to figure out how to
connect to an SQL 2000 server and run a bunch of SELECT, DELETE, and UPDATE
queries ... more >>
Feedback on training
Posted by MattB at 1/2/2004 4:33:10 PM
Hey, I think I've convinced my employer to send me to a asp.net course. I'm
in rural Western Colorado and it looks like all the classroom training is
over on the front range (Denver, Broomfield, Co Spring, etc).
So far my searching has been limited to Google and I've found some good
looking co... more >>
Add control to asp:PlaceHolder on asp.net page from user control on same page
Posted by Dan at 1/2/2004 3:53:41 PM
I have an asp.net page default.aspx with a user control and a placeholder
control.
<html>
<body>
<form id="myform" method="post" runat="server" />
<PageHeader:Header id="header1" runat="server" />
<asp:PlaceHolder ID="content" runat="server" />
</... more >>
calling COM object errors
Posted by Bruce Whitehouse at 1/2/2004 3:52:55 PM
I've an appartment threaded VB6 COM object thats been configured in COM+ to
run under a specific domain user.
I've tried instantiating the object in my VB.NET class and I get the
following error....
------------------------------------------------------------------------
-----------------... more >>
Add httphanlder
Posted by Guoqi Zheng at 1/2/2004 3:39:18 PM
Sir,
I am very new to ASP.NET.
Trying to create a Httphanlder myself.
1. I create a httphandler called qqweb.vb and put it under /bin folder.
qqweb has namespace qqweb and class qqhandler
2. I add the following into web.config.
<httpModules>
<add name="HTTPHandler" type="qqweb.q... more >>
Deploy mulitple ASP.NET applications on a ISP hosted environment.
Posted by James X. Li at 1/2/2004 3:04:36 PM
We are using an ISP to host our web site. All we get
from our ISP is a root directory for our web site.
We can deploy a single ASP.NET application by copying all the
related files (global.asax, web.config, etc.) to the root directory.
Things work fine in this way. But, we would like to deploy a... more >>
ASPX working process recycled, what will lost?
Posted by Welman Jordan at 1/2/2004 2:29:23 PM
In process session states will lose.
So, will the Cache items get lost when aspnet_wp.exe is recycled?
And how about the Application variables?
... more >>
ASP.NET Identity
Posted by rovver2001 NO[at]SPAM hotmail.com at 1/2/2004 1:26:35 PM
Platform: Windows 2000 Server, ASP.NET 1.1
I have changed the processModel's userName & password in
machine.config to use, let say, devUser, as ASP.NET identity,
according to article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT01.asp
In the file we... more >>
Data Binding a Bit Column to RadioButtonList
Posted by Michael at 1/2/2004 12:33:49 PM
Hi,
This should be fairly simple, but it is driving me nuts. First off I have a
table in SQL Server, with a column of type "bit". This is meant to store a
answer to a Yes/No question.
I'm trying to display this stored value in SQL Server in a RadioButtonList
in ASP.NET. I have the value ... more >>
page.MaphPath problem
Posted by tascienu NO[at]SPAM ecoaches.com at 1/2/2004 12:26:26 PM
I have a userControl placed in a directory like this:
/usercontrols/myUserControl.ascx
/usercontrols/controlsList.txt
/index.aspx
'index.aspx' is using 'myUserControl.ascx'
'myUserControl.ascx' is using page.MapPath("controlsList.txt") to open
the file, and the process is failing because t... more >>
How to sort the rows in dataTable?
Posted by JL at 1/2/2004 12:22:01 PM
Hi all,
I want to sort the rows in dataTable and the order of rows is permanent
change, is this possible in dataTable?
Thanks a lot.
... more >>
HTML and ASP.NET
Posted by brians at 1/2/2004 11:38:01 AM
I am a newbie with internet development. I feel pretty
comfortable developing codebehind in the .aspx pages.
Can anyone direct me to some solid sources on the
intranet in how to implement the code behind in with
HTML. I am having a really hard time dynamically
displaying data or posit... more >>
File Download
Posted by brian at 1/2/2004 11:29:32 AM
I have an asp.net intranet site created using vb.net
codebehind. I have 4 vb.net exe's located on my IIS
server and can be accessed by hyperlink. Each time these
links are opened and the exe is launched an Internet
Explorer caution File download box is brought up. It
warns you about dow... more >>
Using a Page object within a Page object
Posted by Kevin Phifer at 1/2/2004 11:19:55 AM
Ok, before anyone freaks out, I have a solution I need to
create that gathers content from maybe different places.
Each one can return a <form> in the html, so its the
classic can't have more than one runat=server form on a
asp.net page. However, I still want developers to be able
to use... more >>
Static page header
Posted by MattB at 1/2/2004 11:17:50 AM
I've done this in other environments but on asp.net. What's the
generally accepted "right" method for putting some boilerplate code at the
top or bottom of a page, like an old-school Server Side Include? Thanks!
--
Matt
"Gravity. It's not just a good idea, it's the law!"
... more >>
Simple XML parser in vb.net?
Posted by MattB at 1/2/2004 10:34:45 AM
I get a string returned from a C++ COM+ object that will look something
like this if the call is successful:
"OK: <guest_no>1234567890</guest_no>"
I do a
if mid(mystring, 5) = "OK: "
to test for success, and then I'd like to just parse out that guest_no
value. Is there a simple call ... more >>
HTML code blocked by Response.OutputStream.Write
Posted by popfilter NO[at]SPAM mac.com at 1/2/2004 10:09:25 AM
I'm working on a site that creates mailing labels. When a label is
generated, two things happen in the background with the image.
First, it is saved as a smaller low-quality .gif on the server and
then presented as a preview using an img tag (also later used for a
history feature on the site).... more >>
Web User Control Event prob.
Posted by Big D at 1/2/2004 10:04:24 AM
I have a class that inherits from System.Web.Ui.Usercontrol... all is
basically is is a button which is created progammatically such as:
public abstract class BaseFrontEndEditor : System.Web.UI.UserControl
{
protected Button btnEdit = new Button();
private void Page_Load(object sender, Syst... more >>
Force reload of ASP page after processing
Posted by Sia Jai Sung at 1/2/2004 9:59:46 AM
I have an ASP page, when user click submit button, it will do some
processing and redirect to another page.
Once the user redirected to other page I want to clear the cache of current
page, so that user can not use Back button
to move back to it. If they do, they will get a reloaded version, wit... more >>
return image (gif / jpg)
Posted by Humberto at 1/2/2004 9:56:16 AM
Hi
I have this
<img src="http://www.mydomain.com/imagem.asp" width="171" height="72"
So, I need make asp (not asp.net) sending the image back to html
Get the file size, open the file (image), read it and send to the browser. Please!
I need a handlebook about asp too. If you know ou have ... more >>
Finding control in DataList itemBound
Posted by neverstill at 1/2/2004 8:49:35 AM
Hi-
I have an asp:image control in the ItemTemplate of a DataList
currently, in the ItemDataBound event, I am getting a reference to the image
control by looping through all the controls in the DataItem and checking if
it is an image control. This is ugly. I can't use "FindControl" cause I
do... more >>
Determine name /path of calling page
Posted by mg at 1/2/2004 8:07:40 AM
Is there a simple way to determine [using C# or
javascript] the name & path of the Web page that calls a
WebForm [aspx] when the calling page is another type such
as an html, jsp, or .do file.... more >>
Question about ASP.NET and Authenticating controls on a form
Posted by john_20_28_2000 NO[at]SPAM yahoo.com at 1/2/2004 7:03:31 AM
Right now, I have a MySQL database that has groups defined (not AD
groups) and based upon which group a user is in they are allowed
certain pages, controls, etc.
I want to make my systems more Active Directory integrated. I don't
mind using MySQL for some thing such as paths, etc., but I want... more >>
ASP.NET registry keys
Posted by Christina Androne at 1/2/2004 6:57:13 AM
Hello everybody
Is there a list somewhere with what the
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\ASP.NET key should contain when
ASP.NET is installed properly? subkeys and values? I am interested
especially in the RootKey value, is it mandatory or not?
I have tried searching through the online ... more >>
Tracking Usage
Posted by brian at 1/2/2004 5:49:56 AM
I have an intranet designed with access to many reports
by clicking a link. The link will open a specified
report. I use a login and session variable.
I want to track when an employee clicks a link. When the
link is clicked I want to write the report name and user
to a database.
Ca... more >>
IIS configuration problems with quickstart samples
Posted by Abhishek Srivastava at 1/2/2004 4:39:30 AM
Hello All,
I have installed the quick start samples that come along with .net sdk.
I am facing some strange behavior on my machine. I would be gratefull if
someone could explain what is going on.
If I type http://15.76.221.178/quickstart in my browser I get an error
message you are not a... more >>
Web Access From Client Machine
Posted by Raja Balaji R at 1/2/2004 4:31:48 AM
Hi
My website root directory is structure is
\wwwroot
\website1
\storedir1
\file1
\file2
\file3..
\storedir2
\file11..
\storedir3
and this is a not a asp or asp.net website.
i know only website1, i don't kno... more >>
XML data into XMLDataDoc ...help
Posted by Dave at 1/2/2004 3:50:43 AM
Hi
I have decided to use the method explained in the first
example here
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpguide/html/cpconsynchronizingdatasetwithxmldatadocume
nt.asp
To try and load data from an xml file into an XMLDataDoc
and then into a SQL Table
h... more >>
ProcessModelConfig' is not accessible in this context because it is 'Private'
Posted by sunil NO[at]SPAM volcanomail.com at 1/2/2004 3:45:52 AM
Dear All,
I would like to read the processModel from machine.config.
The following is code I have writte
Dim hConfig As Object =
ConfigurationSettings.GetConfig("system.web/processModel")
But if I try to typecast hConfig with
System.Web.Configuration.ProcessModelConfig I get the follo... more >>
WebService returns XML in a String - how can I 'convert' this to an XML document?
Posted by Ben Turner at 1/2/2004 3:07:58 AM
I'm querying a web service to get some global weather data =
(http://www.webservicex.net/globalweather.asmx?WSDL) which works really =
well, however I'm getting stuck on the returned data for the GetWeather =
call.
The data returned is presented as a string but actually contains XML =
data. ... more >>
ADSI Problem
Posted by Amit at 1/2/2004 2:53:36 AM
Can anyone help regarding programming in ADSI.
any source code
might help..
... more >>
Crystal Reports vs. ActiveReports
Posted by Sink at 1/2/2004 12:38:09 AM
Hi,
Looking at reporting tools and was wondering if
anyone else has gone thru this. Crystal seems rediculously
expensive once you take into account licensing, while
Active is runtime-free meaning only developer licenses.
On a cost only basis, it seems pretty obvious but
what about featu... more >>
TabControl
Posted by Abc at 1/2/2004 12:05:56 AM
I want to add some controls dynamically when user presses
tab button from a text box.
Can any one please tell me in which function i should
write the code of adding controls .i.e. which function is
called when a tab event occurs?
Thanks, ... more >>
Datagrid: click edit and all the rows disappear!
Posted by trebor NO[at]SPAM sirius.com.no.more at 1/2/2004 12:00:34 AM
Most of this code comes from or follows the walkthrough (Using a
DataGrid Web Control to Read and Write Data). The problem is that as
soon as you click the Edit link, the data rows disappear, leaving you
with just the header row. I've figured out what's happening, but can't
figure out why.
Fo... more >>
|