all groups > asp.net > october 2004 > threads for sunday october 17
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
General question about ASP .NET and HTML integration
Posted by Baldy at 10/17/2004 10:41:23 PM
Hi All,
Just a bit of a general question. I've heard that in ASP .NET projects using
Visual Studio, you jave little or no control over the way the HTML is
presented? Is this true? it seems a little unrealistic to me. I have many
years experience with Old ASP but I'm about to start a new pro... more >>
Declaration Expected
Posted by Simon Harris at 10/17/2004 10:18:15 PM
Hi All,
I'm trying to the the following code working in VS.Net, when I add the lines
noted with '<<<<<' VS tells me declaration is expected for
'SPDOleDbConnection'
Public Class DBConnect
Dim configurationAppSettings As System.Configuration.AppSettingsReader =
New System.Configurati... more >>
ASP .NET and ASP style confusion. Immediate solution required
Posted by Mohit Gupta at 10/17/2004 10:13:01 PM
Hi all,
Consider the following ASP program.
`````````````
OLD ASP STYLE
`````````````
~~~~~~~~~~
header.inc
~~~~~~~~~~
<html>
<body>
<table .......>
<tr>
<td><%=DEFINED_VAR%></td> <!-- DEFINED VAR WILL BE DEFINED AT THE TOP
OF EACH PAGE -->
</tr>
</... more >>
pick Date format from Opearating System
Posted by Ishaan at 10/17/2004 9:13:11 PM
Hi,
Is there any way to pick the data format from operating system settings
using C#?
I am doing an ASP.Net Application.
--
Software engineer
Petroleum Development Oman... more >>
Web Configuration issue
Posted by I am Sam at 10/17/2004 8:21:05 PM
In my web.config file I have placed the following settings:
<authentication mode="Forms">
<forms
name=".tqSecure"
loginUrl="/Login.aspx"
protection="All"
timeout="80"
/>
</authentication>
<authorization>
<deny users="?" />
</authorization>
when I try to access a ... more >>
simple tiff viewer for .net 2003 web app
Posted by Jon Delano at 10/17/2004 6:31:53 PM
Hello
I'm looking for a simple TIFF viewer for a vb.net web application.
The TIFFs are single page and I just need to display them and that is it ...
nothing fancy at all.
Anyone have a suggestion as to a control I can use.
Thanks
Jon
... more >>
Running Javascript from an Imagebutton
Posted by John at 10/17/2004 5:49:49 PM
Hi all,
How do I run some Javascript code from an Imagebutton?
I place the Javascript code inn the onclick in my html section but IE is not
running it.
Regards
John.
... more >>
'AddressOf' operand must be the name of a method; no parentheses a
Posted by Patrick.O.Ige at 10/17/2004 5:33:03 PM
Hi All
i'm getting error with my TreeView Menu(I want to have a button with
ExpandALL and CollapseALL):-
Error:-
'AddressOf' operand must be the name of a method; no parentheses are needed.
I use VB.Net and i changed the C# code from:-
private void ExpandAll()
{
for(int ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
ASP.Net horrow story and questions...
Posted by Steve Wagner at 10/17/2004 5:08:09 PM
This is kind of lengthy as I wanted to include as much relevant
information as possible. This problem has me dead in the water and
clients waiting, any help is extremely appreciated!
Configuration Details
Web Server:
* Window 2000 Server, SP4
* Multiple IP addresses assigned to primar... more >>
Calling Repeater DataItems
Posted by qwerty at 10/17/2004 4:31:10 PM
I have tried to call the Repeater´s item´s DataItem example from Page´s
functions. I have put to the Repeater ID and Name got from the database.
I have tried following:
CType(Repeater(index).DataItem, DataRowView)("ID")
DataBinder.Eval(Repeater(index).DataItem, "ID")
First get me "NullRe... more >>
Dropdownlist onselectedIndexChanged event not fires
Posted by Alexander Reichman at 10/17/2004 4:18:43 PM
Hi All,
I have 22 years of over all experience in programming but just recently
started to learn WEB applications, and started to write my first application
in ASP.NET(VB)
using VISUAL Studio .NET 2003
I have a DropDownList on a Web Form in WEB user control.
SelectedIndexChange... more >>
A bit ot: what is www.whois-server.net
Posted by NGLurker at 10/17/2004 2:27:34 PM
I've seen that may whois classes get the whois server address from the url:
whois-server.net
Anyone knows something more about this service? Is it reliable or someday it
could *disappear" and my class could stop work? :-/
I'm doing something such as:
Select Case ext
Case "com"
... more >>
Render blocks and DataBinder making me CRAZY!!!!!
Posted by lh at 10/17/2004 2:16:10 PM
I'm trying to pass the values from the databinder.eval statmetn into a
method in the codebehind. The code below is within a Repeater.
The error that i'm currently getting is
Compiler Error Message: CS1502: The best overloaded method match for
'projectName.dspBranchAdministration.ShowPreview(st... more >>
array of textboxes
Posted by Chris at 10/17/2004 1:57:03 PM
i am trying to create an application that askes the user how much questions
would you like to fill in. Based the amount that is picked.. anywhere from 0
to 49. I need to create textboxes at run time. I would like to turn them into
an array like in vb6. I just don't know how to create texboxes ... more >>
Bugs found in Asp.Net application (SERIOUS)
Posted by WJ at 10/17/2004 1:55:01 PM
This post is a follow up from the original post dated Oct 16, 2004 "I have
this problem, pls help!" created by Paul FI.
These bugs are rather serious and we would like to know how to get around.
Environment: Windows XP Pro. IIS-5 and Sp2.
Visual Studio.Net 2003 EA edition.
..NetFW 1.1
Her... more >>
RadioButtonList question
Posted by Rob at 10/17/2004 1:50:28 PM
Is it possible to access the table cells that are produced by a Radio
Button List? I've got them coming up in 3 columns but the columns don't
line up from row to row. I'd like to access the width of these td cells.
Thanks
Rob
*** Sent via Developersdex http://www.developersdex.com ***
... more >>
Thumbnail Generation
Posted by le_mo_mo NO[at]SPAM yahoo.com at 10/17/2004 1:37:58 PM
Hi,
I have the following code to create a thumbnail from the input stream
System.Drawing.Image source;
source=System.Drawing.Image.FromStream(new
System.IO.MemoryStream(myData));
System.Drawing.Image image = source.GetThumbnailImage
150,150,null,IntPtr.Zero);
MemoryStream ms = new MemoryStr... more >>
Should I use only one public DataReader, or multiple?
Posted by Andrei Pociu at 10/17/2004 12:47:20 PM
In a typical ASP .NET Web Application (website), I'm currently using a class
where I declare some public static objects. For example there's the place
where I initialize the SqlConnection.
Also there's the place where I declare one public static DataReader, but I'm
not sure this is the best w... more >>
Interop problems "Access is denied"
Posted by Peter Reid at 10/17/2004 12:20:50 PM
Hi
I've created an interop dll with the following commands:
tlbimp NegociosObjects.dll /keyfile:key.snk /out:NegociosObjectsInterop.dll
gacutil -i NegociosObjectsInterop.dll
Then, in a web part, i've tried to create an object of one of the classes in
the dll:
Dim obj
obj = CreateObjec... more >>
inheritance in whidbey
Posted by Mark at 10/17/2004 12:10:46 PM
In version 1.1, I've got numerous code behinds that inherit from a class
we've developed that inherits from the the Page class.
How will this work in Whidbey? With partial classes used for code behinds,
where/how can I modify the class that a code behind inherits from? In the
express web ver... more >>
Accessing usercontrol properties from another page - SERVER-SIDE
Posted by John at 10/17/2004 10:48:37 AM
Hi all,
I need to access properties (as well as a couple of methods) from one web
page embedded within a usercontrol (with an iFrame inside it) to another
usercontrol embedded on the main page within a placeholder.
How do I go about this?
Regards
John.
... more >>
send email issues
Posted by Ron at 10/17/2004 10:32:46 AM
hi guys,
I am trying to send email using smtpMail.
I can send emails inside the organization, but out of the organization I get
an error "The server rejected one or more recipient addresses. The server
response was: 550 5.7.1 Unable to relay for ........"
now I tried to add username and pas... more >>
Page Name Property
Posted by Geof Wyght at 10/17/2004 10:25:17 AM
Hello,
Is there a property of an asp.net page that gives the
name of the page, such as "index.aspx"?
Thanks.
Geof.... more >>
asp.net and html
Posted by notsure at 10/17/2004 9:48:28 AM
How do I do this?
>-----Original Message-----
>"notsure" <notsure@hotmail.com> wrote in news:1ad301c4b458
$1ba7ccc0
>$a601280a@phx.gbl:
>
>>
>> I want to run my website.. but load his aspx page into
a
>> frame on my webpage..
>>
>> Is this possible.. or do I have to recreate my sit... more >>
Global assembly cache and memory
Posted by JerryMorton233 NO[at]SPAM mail.com at 10/17/2004 9:13:30 AM
Hi,
My ASP.NET application will be installed on multiple web sites on one
server. This means that the application DLL will be loaded once for
each installation - which seems inefficient. If I install the DLL in
the Global Assembly Cache, I know it only exists in one place on disk
but does it al... more >>
Question regarding interactive user controls
Posted by Manny Chohan at 10/17/2004 8:49:04 AM
Hi Guys, I am newbie using C#. I have a header control with drop down
application list. i need to hide panels in the navigation user control which
presents users with different menus based on selection in the header list. Is
there any site you can guide me so i can learn how to achieve this?
... more >>
Marquee with a dataset?
Posted by et at 10/17/2004 8:48:40 AM
Does anyone know if we can set a marquee to a dataset? Or how would I use a
database with a marquee?
... more >>
website to call aspx page
Posted by notsure at 10/17/2004 7:46:38 AM
Hi,
I have created a website in generic HTML with a frame in
the middle of the page..My friend created a cool aspx page
that has a few textboxes and stuff so that people can
enter information. This information gets saved to a
database that he created.
He says that I can use his aspx pa... more >>
how to send two parameters in HyperLinkColumn?
Posted by sincethe2003 at 10/17/2004 4:49:32 AM
Hi, in the following example:
-----------
<asp:HyperLinkColum
HeaderText="Select an Item"
DataNavigateUrlField="IntegerValue"
DataNavigateUrlFormatString="detailspage.aspx?id={0}"
DataTextField="PriceValue"
DataTextFormatString="{0:c}"
T... more >>
how do I get the ID of a row I just added using OleDbDataAdapter.Update() ?
Posted by bennett NO[at]SPAM peacefire.org at 10/17/2004 2:11:31 AM
Suppose I add a new row to a table in a dataset, and then I use an
OleDbDataAdapter to add that new row to a SQL Server database using
OleDbDataAdapter.Update(), as in the following code:
dsLocalDataSet.user_postRow newRow =
dsLocalDataSet1.user_post.Newuser_postRow();
newRow.post_text = this... more >>
|