all groups > asp.net > february 2004 > threads for sunday february 1
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
Reading a query string
Posted by Lee at 2/1/2004 10:19:10 PM
Hi All,
What is the code to read a query string from a URL?
Ie I am sending http://localhost/project.aspx?projectID=123
In VB how do I read the value of projectID in the page that is called? Code
examples would be appericated.
Thanks
Lee
... more >>
ASPX Page name in user control
Posted by A.M at 2/1/2004 7:33:09 PM
Hi,
I know that i can use Page.Request.Path to find what is the current page
name.
The problem is I can't access to Page object inside a user control.
Is there any way that a user control access to the page class?
Thanks
Ali
... more >>
WebConfig
Posted by Jim Heavey at 2/1/2004 6:21:13 PM
I am trying to figure out how to "deal" with placing the connection string
into the webconfig file when the connection string contains " and '.
Here is my connection string...
//
value="Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User
ID=Admin;Data Source=F:\Jim\My Documents\Clie... more >>
Regular Expressions
Posted by Ron Vecchi at 2/1/2004 5:28:09 PM
I'm tring to figure out the expression to use to search a bunch of documents
that contain a word but do not contain a different word. Not having any
luck though!
Any ideas
Thanks for the help
--
Ron Vecchi
... more >>
Unable to locate IIS 6.0
Posted by Ron Jackson at 2/1/2004 5:21:08 PM
Where can I locate and download IIS 6.0... more >>
XHTML Complaint?
Posted by suicidaltendencies at 2/1/2004 5:21:07 PM
Is there anything that can make it easier for an asp.net developer create a XHTML complaint page?
Thanks,
Harold... more >>
How to reference an object created in another class?
Posted by theintrepidfox NO[at]SPAM hotmail.com at 2/1/2004 3:46:57 PM
Hi Group
I apologize for this very basic (I guess) question. I had a look in
the posts and on MSDN but don't know where to start. I'm grateful for
any push in the right direction. I just don't know what I need to do.
Thank you so much!
Let's assume I've a procedure in class A which does som... more >>
css in external stylesheets for aspx pages
Posted by Rod Snyder at 2/1/2004 3:01:30 PM
I was wondering if there are any pitfalls or issues with using external
(linked) style sheets when developing aspx pages. Can you apply css styles
to controls (like a datagrid or link button the same way you do for elements
in html?
Rod
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
IbuySpy trouble!
Posted by Claude seraphin at 2/1/2004 2:05:26 PM
IbuySpy setup program fails to create the store database on
my win3k server running sql server 2000 . Can anyone tell me how i can
accomplish this task manually?
Thanks in advance.
... more >>
multipart forms with asp.net
Posted by Max at 2/1/2004 12:46:30 PM
What's the most appropriate method for multipart forms? I've found in VS.NET
it's pretty simple to put all the parts on one page, rather than use
multiple pages. I've separated each of the parts in their own separate
table, and just cycled thru each part by manipulating each table's .visible
pro... more >>
Navigation is ASP.Net...
Posted by Mohamud Faruk at 2/1/2004 11:54:42 AM
I am writing a web based application using ASP.Net.
As part of the application flow I am calling several web forms and the user
can navigate between different forms.
Currently I am aware of Server.Transfer(" .aspx") and Response.Redirect("
..aspx") statements.
1.Is there any other statements ... more >>
DataBinding a single record
Posted by Peter Morris [Droopy Eyes Software] at 2/1/2004 9:17:03 AM
Hi all
When I bind to multiple records I use a DataList. This allows the
web-designer to add code like <%#DataBinder.Eval(Container.DataItem,
"Name")%>
Whenever I want to retrieve a single record from the DB for editing I also
want to allow the designer to use the same technique. At the m... more >>
Dynamic Tables
Posted by com2repair NO[at]SPAM yahoo.com at 2/1/2004 8:52:23 AM
I used to develop with Classic ASP. Now I'm learning ASP.NET
I used to create tables 'on-the-fly' using recordsets. My code
would loop through the recorset.Fields to make the headers.
If I added a field to the table, I didn't have to update my code.
I liked the fact that I could test for a fie... more >>
ASP.Net DLL Memory behaviour
Posted by Sami Samir at 2/1/2004 4:51:07 AM
Hi Everybody,
I hope that someone can answer this questions for me. When somebody connects to a ASP.Net site, the site's DLL is loaded into memory. When throughout the user's browsing, will the DLL be removed from memory?
To make myself clearer, I'll explain what I need. I have developed a sit... more >>
Setting Value of Dropdown List from Array
Posted by George at 2/1/2004 12:43:43 AM
I am trying to set the value of items in a dropdown list dynamically, and
can't seem to figure out how to do it.
I have two arrays set up like this:
Dim a() as string ={"A", "B", "C"}
Dim b() as string ={"1", "2", "3"}
I can get the first array in the items list like this:
DrpDwnLst1.D... more >>
|