all groups > asp.net > december 2003 > threads for friday december 26
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
deploying ASP.NET?
Posted by donald sorrenson at 12/26/2003 11:05:05 PM
hey all
I have created an ASP.NET with my VS2003. its working fine with my machine,
however I need to deploy this solution. I assume that I can use the
installation procedure comes with VS, and I would, had this was an actual
client program. since I am new to all of this, this is only test pages... more >>
User control fires a method in webform
Posted by Sevket Seyalioglu at 12/26/2003 10:51:02 PM
Is there a way for the user control events to fire its webforms methods?
I have a header user control which has 3 buttons.
Edit , Save , Delete.
Where ever I include that user control I will have the same named methods.
I want this user control to fire this same named methods.
Is there a ... more >>
question regarding overriding of web.config in the root directory..in a web app in a virtual directory
Posted by dotnetprogram at 12/26/2003 10:02:38 PM
I have a web application in the parent directory(http://localhost/). it has
a web.config setting as follows:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="UserToken" protection="All"
timeout="60" path="/">
<credentials passwordFormat="MD5">
</credentials>
</form... more >>
Fire PageEvent Manually through HttpHandler
Posted by moid at 12/26/2003 9:16:13 PM
Sir,
I want to implement FrontContrller but I need to fire page.init and =
page.load event manually, as u mentioned in this exemaple (MSDN Link =
Below)..
But i got error : error CS0103: The name 'PageInit' does not exist in =
the class or namespace 'FrontControllerCSharp.Handler'
=20
how the... more >>
Dataset Updation
Posted by Vinod I at 12/26/2003 6:35:57 PM
Hi Team,
I want to use DataSet in my ASP.Net application extensively.
Scenario is,
I am showing Data Set in one of my ASP.Net Page and changing row & column
values thru Page. After that I want to send this changed DataSet to Server
side and want to use "DataAdapter.Update" to commit the ... more >>
enableSessionState - still struggling
Posted by Martin at 12/26/2003 6:06:28 PM
Hi,
I had a page the other day for which the compiler just wouldn't recognize
the fact that I had enabled session state in every possible way. I ended up
moving the code that dealt with the Session object from code-behind to
in-page and it worked. Didn't find an explanation though but it got m... more >>
How to retrieve Application variables down the class line?
Posted by Frank Rizzo at 12/26/2003 5:57:29 PM
I have a class that's being instantiated and called from the code-behind
class. How can I get access to the Application variables from this class?
Thanks... more >>
Difference between C# and VB.NET
Posted by Raj Dhrolia at 12/26/2003 5:28:10 PM
Hi Guys,
It might seem to be a very easy question, but i am very much eager to
know some good technical difference between C# and VB.NET.
Are there anything that i can do in one language and cannot in other?
And finally why C# seems to be a sort of standard in industry?
Regards,
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Difference between C# and VB.NET
Posted by Raj Dhrolia at 12/26/2003 4:55:05 PM
Hi Guys,
It might seem to be a very easy question, but i am very much eager to
know some good technical difference between C# and VB.NET.
Are there anything that i can do in one language and cannot in other?
And finally why C# seems to be a sort of standard in industry?
Regards,
... more >>
top level marker?
Posted by Brian Henry at 12/26/2003 3:39:28 PM
I have a template that can be used a few levels deep, but my images folder
is in the top level so i have a structure like this
\
|-- Images
|------- Template
|-- Documents
|------- Documents Folder 2
|---------------- Documents Folder 3
how would I use the same template on all levels and... more >>
Status Page
Posted by Johny Segura at 12/26/2003 3:36:08 PM
I have a problem with my asp.net page: My customers wants to see a Message like "Wait while process your query" but I don't how to do that...Because that page is a Modal Page that was load with a showModalDialog javascript sentence. Is in that page that is modal were we want to show a message while ... more >>
rs.AddNew in ado.net
Posted by tascienu NO[at]SPAM ecoaches.com at 12/26/2003 3:18:52 PM
'hi, this code is easy and straight forward in ADODB. if ADO.NET is easier
'and requires less code writing..., how do i write the same code...
rs.Open "SELECT * FROM tb_City WHERE name='Vancouver'", myConn, 3,4
if rs.Eof then
rs.AddNew
End if
rs("LastViewed")=Now()
rs.UpdateBatch()
... more >>
Javascript closes IE
Posted by m miller at 12/26/2003 3:06:28 PM
I have the following javascript in my html:
<script language="javascript">
function setfocus()
{
if (document.body.style.cursor="default")
{
document.body.style.cursor="wait";
document.Form1.txtPartno.focus();
... more >>
setting Best Practice ADO.NET connections
Posted by steven.krizanovic NO[at]SPAM cba.com.au at 12/26/2003 2:21:31 PM
Hi,
I am a relatively new user to vs.NET, and currently developing a
ASP.NET web site using MS access, with the view to moving it to
SQLServer. My problem is, how do I set up the connection to be utilise
connection pooling, and to be easily maintained and modified. I was
thinking of setting u... more >>
Arrays doesn't save between calls
Posted by Giorgio Gentili at 12/26/2003 1:15:35 PM
Hello all, I'm making a page to answer about 180 questions, so, i made
possible that the user choose how many columns and rows are displayed in
each page depending on his resolution and others factors, so i display this
page until all the questions are answered, but my trouble starts when i took
... more >>
How to slowly add content to a web page?
Posted by Bruce W.1 at 12/26/2003 12:32:05 PM
When a user clicks on a button on my aspx page it launches a bunch of
threads which go and do things which might take a few seconds each.
Rather than waiting for all threads to complete before rendering the
response, is there a way to show the current status of each thread?
Ideally the status... more >>
Associate Command Button to Javascript Code
Posted by Angel at 12/26/2003 10:22:23 AM
How do I associate a server side command button to a
Javascript function that is in the Web Form HTML Code?
Thanks... more >>
Edit in DataGrid
Posted by DC at 12/26/2003 10:18:40 AM
Newbie's question about .NET datagrid
If I use:
<asp:EditCommandColumn></asp:EditCommandColumn>
When I edit a row, it will automatically show Update and Cancel Link.
But when I use:
<asp:Button id="btnEdit" runat="server" Text="Edit" CommandName="Edit"
CssClass="clickable"Width="50px" />
... more >>
need some help
Posted by junkone NO[at]SPAM sympatico.ca at 12/26/2003 9:46:55 AM
I get the following error. please help
Server Error in '/WebApplication1' Application.
--------------------------------------------------------------------------------
Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Pl... more >>
Error Handling with response.write
Posted by Michael at 12/26/2003 8:57:15 AM
Hello,
I have a separate Database class that handles any database work that all my
asp.net pages can use.
My problem is, many times I use try/catch to catch errors, and I want to
output these errors to the webpage with response.write().
Unfortunately Response.anything from within my class g... more >>
web controls will not display
Posted by dave renner at 12/26/2003 8:47:56 AM
i cannot get any of my text box, listbox web controls to
display in a very simple web page. the only thing that will
display are labels. what is the problem??
thanks,
dave ...... more >>
facing a problem
Posted by hussein_hariri NO[at]SPAM hotmail.com at 12/26/2003 8:28:29 AM
hello
i have started working bye ASP.net but i'm facing a small
problem. i'm trying to get the name of the user who
logedon to the opersating system , i got the computer
name, server name, domain name, and the name of the user
who started the studio.net { ASPNET }. but the one who
logged... more >>
web control wont display
Posted by dave renner at 12/26/2003 8:19:01 AM
am creating an asp.net page but the text box and list
controls wont display, only the labels. i recall having to
use a program something like "regiis" to install but cannot
remember. how do i do this? thanks,
dave ...... more >>
How to display nested structures?
Posted by Olav Tollefsen at 12/26/2003 5:43:09 AM
I have a somewhat complex data structure to display on a web page:
Item A
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item B
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item ...
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...... more >>
|