all groups > asp.net > june 2004 > threads for sunday june 6
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
How to reference an object in a user control from its parent page
Posted by moondaddy at 6/6/2004 11:22:47 PM
I have a page which has a user control called CheckOutStatusBar and it lives
in a table call like this:
<%@ Register TagPrefix="uc1" TagName="CheckoutStatusBar"
Src="Navigation/CheckoutStatusBar.ascx" %>
html.....
<td>
<uc1:checkoutstatusbar id="CheckoutStatusBar1"
runat="server"></uc1:che... more >>
ASP.NET error
Posted by Melson at 6/6/2004 11:11:41 PM
Hi
I've problems doing these 3 steps. Please help.
1. Create WSDL file by opening SqlService.asmx so that it goes through IIS.
Click on "Service Description" Save the resultant file as SQLService.sdl.
2. Run mSqlproxy.bat. This put SQLService.dll in the bin directory and
SQLService.vb in ... more >>
Netscape positioning problems
Posted by Sergey Poberezovskiy at 6/6/2004 8:01:09 PM
Hi,
Can anyone tell me how do I position controls within
Netscape without using tables? Consider the following:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML>
<HEAD>
<style>
.myDiv { display:inline; width:100px; }
</style>
</HEAD>
<body>
<table>
... more >>
Viewstate Errors
Posted by Mind Dragon at 6/6/2004 6:36:01 PM
I have an ASP application that works fine locally but when it's uploaded occasionally, I get viewstate errors. Another thing is that the viewstate for that page is disabled. There are cases where I can just refresh the page and it goes through ok
<%@ Page Language="VB" EnableViewState="false" Deb... more >>
Form Question
Posted by Miguel Dias Moura at 6/6/2004 6:06:53 PM
Hello,
i need to insert 2 things in a web site form:
1. 3 DropDownLists with Day, Month and Year (since 1920). I don't want to
fill everything.
Do you know if there is something i can use and that people usually use
it for this?
2. I want just one DropDownList. This one shows year. T... more >>
How do I tap ASP.NET session object with ASP 3.0?
Posted by Jeffrey Palermo [MCP] at 6/6/2004 5:08:16 PM
I have a solution that exposes the ASP.NET session object via web services,
and then I consume it with ASP 3.0 with the Soap toolkit, but then every ASP
web request becomes two, and it slows down my app. Has anyone solved this
problem?
Best Regards,
Jeffrey Palermo
... more >>
BC30466: Namespace or type 'test' for the Imports 'test' cannot be found.
Posted by Sting at 6/6/2004 5:03:03 PM
I had a working .net program
I've re-installed XP (defective harddisk).
and now i keep getting
BC30466: Namespace or type 'test' for the Imports 'test' cannot be found.
The assembly is called test.vb, compiled to test.dll
The namespace is called "test"
This is the import:
<%@ Import Names... more >>
IsPostBack property misbehaving!
Posted by Jensen bredal at 6/6/2004 4:48:23 PM
Hello there,
I have my aspx page loaded but when i click a link
on the page, then IsPostBack is always false.
How can this be?
The link is:
<a id=x href=deaulf.aspx?id=1 runat=server> </a>
The click does in fact cause a postback(the page is refreshed) but the
debugging shows that ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
File Upload from within datalist
Posted by dwk NO[at]SPAM auto-graphics.com at 6/6/2004 4:10:13 PM
Hello-
I'm having a problem doing a file upload from within the edit function
of a datalist. I have a simple file upload that works on a standard
..net page:
<td width="53"><input id="inpFileUp" type="file" runat="Server"
/> </td>
<asp:Button id="Button1... more >>
retrieving the original value from a calendar control
Posted by bill yeager at 6/6/2004 2:38:22 PM
I would like to place the currently selected date
(retrieved from the database) on a calendar control which
is embedded inside a datagrid. However, I can't find the
ID of the control to do so. During the "Edit" command of
the grid, I have the following code:
<code>
If e.CommandName = "Edit... more >>
It's ASP.NET, not ASP!
Posted by John Saunders at 6/6/2004 2:37:42 PM
<tongue in="cheek">
<p>
I've kept quiet about this for the past few weeks, but I just can't keep
silent any
more.
</p>
<p> There are too many people in this newsgroup who use the term "ASP" to
refer
to "ASP.NET". In the future, would you please try harder to use the correct
terminology:
</... more >>
HELP ASP/CDONTS
Posted by Ammar at 6/6/2004 2:12:47 PM
Hi All!
I have been trying to use ASP to send E-mail from a web page using CDONTS; I
tried first to run the asp file in my computer (I am running IIS under
Windows XP-Pro) but nothing happened, and the E-mail was not sent, then I
tried to uppload the files to a free ASP hosting site like 1asphos... more >>
Working with image.
Posted by Jensen bredal at 6/6/2004 11:59:52 AM
Hello gurus
I need to upload to accept image upload on my site. I also need to display
these images in a databound control.
The image are upload in a database.
My concers are:
-How do i enforce size limit on image?(which size is acceptable?)
I'm thinking of using a custum validator ... more >>
Session lock-up issue when requesting one webform from another.
Posted by Thomas Nielsen [AM Production A/S] at 6/6/2004 11:49:35 AM
Hi,
I have one web form (WebForm1.aspx) from which i would like to display the
output of another web form, WebForm2.aspx, in a controlled environment. I do
this by using HttpWebRequest to request WebForm2 from the WebForm1
code-behind, and this works flawlessly.
I would also like to be able... more >>
Setting table cell colors?
Posted by Rob Meade at 6/6/2004 11:41:01 AM
Hi all,
I need to set some table cells which I am adding from code.
I am using;
cell.backcolor = cell.backcolor.white
for example to set it to white - this is all very well and good for a
'named' colour - but how do I set this for #d4c5db as an example? I have
many colours which I nee... more >>
User Controls
Posted by Jim Heavey at 6/6/2004 10:46:03 AM
Hello, I have a user control which I place at the top of each page. I want to have code in this user control which sets the value of a couple of module variables and I was wondering if I create a Variable name of "Public string Fred" in the control, will the page that uses the control be able to se... more >>
button click clears textbox and returns null error
Posted by Tim Zych at 6/6/2004 10:33:54 AM
I am trying to follow the instructions from
http://authors.aspalliance.com/das/tutorial/fileupload.aspx to upload a
file.
The webform contains 2 buttons and a textbox. Browse for a file, click the
Upload button and it's supposed to save it somewhere.
Problem is, when browse for a file and ... more >>
Cascading Style Sheets
Posted by Jim Heavey at 6/6/2004 10:26:03 AM
Hello, I am hoping I have a very basic question for Cascading Style Sheets
If I am using an ASp:Panel control and I have a number of controls in the panel, how do I get the controls to all collectively center in the panel? I see an attribute for Text centering, but that is different then having al... more >>
Session TimeOut
Posted by Jim Heavey at 6/6/2004 10:21:02 AM
I am wanting to find out a way to timeout my session
This issue is that the user retrieve data from a datatable and that data get stale over time, so after 20 minutes, I want to be able to tell the user that their session has timed out and they will need to refresh their data
I set the session ti... more >>
IIS Logs
Posted by Jim Heavey at 6/6/2004 10:16:02 AM
Where can I find the IIS Logs and the System Event Logs?... more >>
JavaScript In ASP Control
Posted by Jim Heavey at 6/6/2004 10:06:03 AM
Hello, hopefully this is a simple question.. I have the following statemen
<asp:Button ID="cmdPPIPDelete" Text="Delete" Runat="server" CssClass="buttonDelete" CommandName="Delete" OnClick="return confirm('Please Confirm You Want To Delete Record')"></asp:Button
Each time I navigate to this page... more >>
Variable values collision in multiuser environment
Posted by marroba NO[at]SPAM yahoo.com at 6/6/2004 9:47:16 AM
I had the idea that two users code are being run by two different
instancies, so from the variable values point of view they are
complete independent.
I have an asp.net that calls a module rutine.
When there are two users accessing to the module rutine, looks like
asp.net is sharing variabl... more >>
ASP Control names in resulting HTML
Posted by Anatoli Trifonov at 6/6/2004 9:34:11 AM
Hi all
Please point me to a link if this can be changed, fixed or something
I have the following control in my UserControl
<img src="pic/dot.gif" border="0" width="50" height="50"
id="imgCenterImage" runat="server" alt="">
After aspx runs through
imgCenterImage.Src = bla bla ... more >>
Getting current URL
Posted by VB Programmer at 6/6/2004 8:05:55 AM
How do you get the current url of the page, including the full querystring,
etc...
Thanks.
... more >>
CustomValidator1_ServerValidate Doesn't Work !
Posted by Raheel Hussain at 6/6/2004 2:16:30 AM
hi,
I have different controls on my form (most of them with required field
validators)
one of which is a date field with a custom field validator on it, but i
don't knwo why its is not called , i tried it in debug mode but the
function not called at all.
all the required field validator... more >>
|