all groups > asp.net > july 2004 > threads for sunday july 25
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
Incremental search
Posted by Mark Goldin at 7/25/2004 9:34:57 PM
Can a dropdownlist be a fully functional Incremental search control?
As far as I can see it only takes a first letter when I am trying to type
something in.
Thanks
... more >>
Client-Side Script - how to pass querystring value to new window
Posted by Jon at 7/25/2004 8:50:52 PM
I need to open a new window from client-side JavaScript, and pass a
querystring parameter value to the new window. The page that opens in the
new window has code-behind logic that requires the value of the querstring
in order to know what to display.
I tried this in my client-side script and i... more >>
Copying a ASP.NET web project
Posted by Christina at 7/25/2004 8:41:15 PM
What is the easiest way for me to take with me a development project (an
ASP.NET web application) on the laptop? I want to sit on the beach and do
some development work ;) and then copy it back onto the server when I get
back from vacation.
I use the MS Visual Studio .NET 2003 Enterprise editi... more >>
how to authen AD user in my login page
Posted by sincethe2003 at 7/25/2004 8:27:44 PM
I wanna make sure the user is valid in AD account, and the login page need
to be self-designed page, how should I do this?
... more >>
DataGrid.Binding()
Posted by Just D at 7/25/2004 7:25:36 PM
Hi,
If anybody needs to show some data retrieved from the database table, what
method is more preferrable?
1. DataSet ds = ...;
DataGrid.Data.Source.ds;
DataGrid.Bind();
2. Write a custom object, fill it with the DataSet data and ÅÒÕÔ try to bind
the DataGrid or DataTable and ... more >>
Concurrency Question
Posted by Nick at 7/25/2004 5:37:09 PM
I have a Registry class in a layer below the UI/Web layer. Inside it has a
static member which points to an instance of IRegistry. When the web app
starts, I set this instance member to a class written in the ui layer. Lets
suppose IRegistry has a single method on it, called GetUsername():
... more >>
Validating XML
Posted by A.M at 7/25/2004 4:22:35 PM
Hi,
I can serialise an XML file into an object using this code:
string strXmlPath = Server.MapPath ("/Thumb/Config.xml");
XmlSerializer serializer = new XmlSerializer(typeof(Config));
TextReader reader = new StreamReader(strXmlPath);
Config config = (Config)serializer.Deserialize(reader);
... more >>
HOWTO: NEWBIE: Query Data from Access Using ADO.NET?
Posted by Don Wash at 7/25/2004 4:11:58 PM
Hi There!
How to query Access DB using ADO.NET and get Recordsets?
e.g. I want the following sql...
SELECT * FROM Authors
query Access DB using ADO.NET and returned records will be displayed in a
drop-down box in ASP.NET.
Please help! Thanks in advance!
Don
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Return values from modal form to main page
Posted by Mark Goldin at 7/25/2004 3:33:10 PM
I have main aspx page with a button that will show a modal
dialog in the Browser when a user clicks on the button.
On the modal form the user will do some selections.
The he will submit his selections to the server via a postback.
How can I take these selections to the main page?
Thanks
... more >>
ADSI via .net
Posted by Chris Kennedy at 7/25/2004 3:15:53 PM
I want to design an application to administer IIS. I want to do it in .net
not VB6 or VBScript. Are there any .net classes for this or do I have to do
a COM interop, if interop is the way to do what dll do I have to point to? I
am alright with the code I just need a pointer in the right direction... more >>
Setting multiple property values in one databind
Posted by John at 7/25/2004 1:33:07 PM
If I have aspx code like:
< asp:label Text='<%# GetData() %>'>< /asp:label>
Is there some way in my GetData() method that I can get a handle to this
Label control, and set other properties apart from Text, too??
That way a single db addess could set text, color, visibility etc.
Passing ... more >>
Print Button
Posted by Mariame at 7/25/2004 12:31:18 PM
Hi All,
How to add a print button to a crystal report???
Thx & Regards
... more >>
<asp:Panel Visible
Posted by Mark Rae at 7/25/2004 11:14:30 AM
Hi,
Is there any way to use the asp:Panel Web control so that it is always
created regardless of its Visible property? E.g. if I write the following:
<asp:Panel ID=pnlEvent Runat=server Visible=False>
....controls
</asp:Panel>
the panel is not actually created. I'd like it to be created ... more >>
Button open a new page
Posted by Mariame at 7/25/2004 9:21:54 AM
Hi everyone
I have a button that open a new web page so i use the following script
response.write("<script>window.open(url,'Name')</script>")
every time the user click on the button it opens a new page
How to make sure that if the user open a page & click again on the button it
doesent open ano... more >>
Document Outline in VS.NET! WOW!
Posted by msnews.microsoft.com at 7/25/2004 3:05:32 AM
Anyone ever play with Outline views in VS.NET? I'm amazed I never discovered
this. None of this was ever discussed in my training. It's a big help to use
this with HTML view.
View/Synchronize Document Outline
-Max
... more >>
Cookies
Posted by Saber at 7/25/2004 2:01:36 AM
I want to prevent users from voting more than 1 time in a simple poll.
I tried:
Session.Timeout = 40
Dim objCookie As HttpCookie
objCookie = New HttpCookie("before", "voted")
If Session("before") = "" And Request.Cookies("before") Is Nothing Then
Session("before") = "voted: true"
... more >>
Site root folder issue
Posted by John at 7/25/2004 1:10:47 AM
Hi
We have the html portion of our site in the site root folder on a remote
site hosted with a web hosting company. I am now trying to add some asp.net
bits to the site but in trying to keep these separate from the main site, I
have copied the asp.net files into a sub folder under the root. Th... more >>
repeater control last row
Posted by Guoqi Zheng at 7/25/2004 1:05:42 AM
Sir,
According to our design, very often, I need to have a different html code
for the last row of our repeater control. I can not put those code
difference into footer because those code has to be in the last data row.
How can I edit the last data row of a repeater control??
--
Kind re... more >>
|