all groups > asp.net > june 2004 > threads for tuesday june 15
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
Trouble with aspnet_wp.exe
Posted by Akoni at 6/15/2004 11:20:28 PM
Hello,
I have written a ASP.NET (C#) front-end that connects to an unmanaged win32
c++ dll. A few problems occur:
-I am unable to use the IO stream (write to an event log) from the dll.
Although I can successfully use an IO stream when calling the dll from a
regular .net Windows Form.
-T... more >>
Triggering Button clicked event when I hit enter key at edit box....
Posted by Veeresh at 6/15/2004 10:50:45 PM
When I enter some data in textbox1 and hit enter key resulting in calling
the clicked event of Button1. What I am doing wrong here?
-- Veeresh
Here is my code.
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm2.aspx.vb"
Inherits="Test001.WebForm2"%>
<!DOCTYPE HTML PUBLIC "-/... more >>
How to refer to a component in an UserControl ?
Posted by peter NO[at]SPAM notmail.net at 6/15/2004 10:44:11 PM
I have created an UserControl (MywindowFooter) which
contains a label-component :
<asp:label id="lblStatusBar" runat="server"></asp:label>
How can I refer to this label, from the code-behind file, to
set its Text-property ?
I already figured out that I probably should 'get' the
label-co... more >>
Linkbutton with forrm data?
Posted by Al Cadalzo at 6/15/2004 10:40:51 PM
I'm generating hyperlinks in a datagrid. These links are to various sites
and all use querystring values. We now have a requirement to link to a web
site's Advanced Search page, but the parameters have to be passed to it as
form data in a POST. I've done this before using WebRequest/Response ... more >>
Persisting business layer objects
Posted by headware NO[at]SPAM aol.com at 6/15/2004 10:19:32 PM
I am new to 3-tiered design and am in the process of designing an
application that will work with ASP.NET as well as Windows Forms (and
possibly with a PDA of some sort down the road). My question is about
the statefulness of business objects. In some of the examples that
I've seen of 3-tiered s... more >>
ASPX login page and xml
Posted by EMW at 6/15/2004 10:11:54 PM
Hi,
I am creating a login part on my page and I wanted to store the username and
password info in a xml file at the server.
But to make sure nobody but my program can read the xml file, I was thinking
of using some kind of encryption.
How can I do this?
Is there any known and easy way to d... more >>
Inserting money type in database from asp.net form!
Posted by Jensen bredal at 6/15/2004 8:52:07 PM
Hello gurus,
How do i handle Currencies from "asp.net form field " to "insert " querry in
database?
The "money" is entered in a textbox and my code is falling to the stored
procedure due to wrong currency format.
Any help will be higly cheered!
Thanks
JB
... more >>
trace
Posted by hugo batista at 6/15/2004 8:48:41 PM
Hi
I'm trying to output trace (diagnostics) to a text file in my web app
i used this in web config
<system.diagnostics>
<trace autoflush="true" indentsize="0">
<listeners>
<add name="myListener"
type="System.Diagnostics.TextWriterTraceListener"
initia... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Adding an logo-image/tekst to an existing image.
Posted by Richard at 6/15/2004 8:20:10 PM
On my webpage I am making I want that if users view any image in my gallery
a small logo/tekst will appear in the image.
I know it's possible but I haven't got a clue how to get a logo or tekst on
a image.
Does someone got an example or somewhere I can read more about it except the
MSDN?
t... more >>
TextBox and Button
Posted by André Almeida Maldonado at 6/15/2004 7:51:16 PM
Hey guys...
In my aspx page I have a textbox that when the user press Return I need to
click a button. How can I do it???
OR
All the pages that contains buttons have a default button, but I don't know
how to define the default button. If I do it, my problem will be solved.
Thank's
... more >>
Writing Response to a file
Posted by GSK at 6/15/2004 7:38:24 PM
I figure this should be simple if it is possible:
Let's say I have an .aspx that outputs a receipt, or the contents of a form,
etc., and I want to save the rendered HTML into a file for future reference.
Is there an easy way to do this? (This is not what I am actually trying to
do, but it is t... more >>
start/stop services programatically
Posted by vickaiser1 NO[at]SPAM yahoo.com at 6/15/2004 7:25:36 PM
I am creating a setup project for an application and need to edit the
Metabase.xml file during setup. Does anyone know of a way to stop and
then restart services programatically before and after I edit this
file?
Vic... more >>
Unable to get the project file from the Web Server
Posted by SteveS at 6/15/2004 6:04:22 PM
Hello, I'm compiling an asp.net application and having troubles. I keep
getting the errors:
"Unable to open Web project" for the web web services
and "Unable to get the project file from the Web server" for the web
project.
I believe I'm getting this because I don't have IIS pointing... more >>
how to access client harddisk?
Posted by angus at 6/15/2004 5:45:33 PM
Dear All,
how to read the and write a file to the client's harddisk when using
asp.net?
is it possible to do so?
Thank you.
Regards,
Angus
... more >>
Store Datatable in session
Posted by Grey at 6/15/2004 5:32:35 PM
how to store a datatable in Session variable
... more >>
Scope of variables declared in .vb module files
Posted by Anand Sagar at 6/15/2004 5:23:44 PM
If I declare a variable in a .vb module file , like
Public Module modMain
Public temp As String
End Module
I am able to access the variable temp in all the pages of my site. However,
I want to know if the variable temp above is a variable of session scope or
application scope.
Does anyo... more >>
popup not poping
Posted by Buz Waitz at 6/15/2004 5:18:53 PM
I have tried several different versions of javascript to pop up a window
from an aspx page. The problem is, that the new page pops up in the current
window, not in a popup. The code works in a regular HTML page, using
Dreamweaver. I've also used code generators, tried by hand, you name it.
Same ... more >>
how to loop all form fields and HtmlEncode text?
Posted by AFN at 6/15/2004 5:11:28 PM
I want to have a routine in a page base class that will take all the text
fields on a web form, and then HtmlEncode their values.
I'm having trouble figuring out if I want to loop controls or loop through
server.form?
I'm also having trouble figuring out which ones are text fields (versus,
... more >>
Delete data row in Session
Posted by Grey at 6/15/2004 4:58:00 PM
i have created a dataset in Session variable. is it possible to delete any
one row of dataset in Session which is like operation in SQL.
... more >>
Turning Off ASPSession Objects
Posted by Santosh at 6/15/2004 4:54:13 PM
How Can I turn off ASP.Net Session Objects?
For e.g: I do not want this
ASPSESSIONIDSSTQTBDS=HHHJBSJSHBDMBNDB
Any help is appreciated.
--
TIA,
Santosh
... more >>
Deploy WebForm project to Win Serv 2003
Posted by mg at 6/15/2004 4:51:02 PM
I get the message "server is not running ASP.NET version 1.1" when I try to deploy a WebForm app to Windows Server 2003. In the past, the same deploy to Windows Server 2000 was completely successful.
But, ASP.NET 1.1 is part of the OS, right out of the box. Can you suggest what I need to do to ... more >>
Datagrid footer bound dropdownlist
Posted by Mohamed Zaki at 6/15/2004 4:49:02 PM
Dear All,
I've a datagrid in its footer i added a drop down list and some text
boxes and a link button to add new records in the database, however i
populate the dropdown list in the ItemDataBind, when i click over the
linkbutton i got the dropdown list populated again and the selected item ... more >>
Help with empty datarow
Posted by News at 6/15/2004 4:23:06 PM
Hi, I wrote a function that pulls a record, below:
++++++++++++++++++++++++++++++++++++++++
Public Function getServPlanProgActivity( serviceprogramenroll_id As Integer,
activity_id As Integer ) As DataRow
' Connect To db
Dim myConn As New SqlConnection(_DSN)
Dim dtrHasRows As DataRow
T... more >>
Checkboxlist inside Repeater - doesn't fire click event for Checkboxlist
Posted by JD at 6/15/2004 3:47:11 PM
Hello,
I have a problem with checkboxlist inside Repeater (in ASP.NET page).
I am able to create Checkboxlist and bind it (inside Repeater_ItemBound -
including setting checked/unchecked). Checkboxlist has Autopostback=true so
whenever I click on checkbox, the page is submitted to the server.
... more >>
Trying to check date entered using validation
Posted by TN Bella at 6/15/2004 3:16:36 PM
Trying to check if an entry for an date is < 3 years to current date or
> 30 days from current date. How can I do this in asp.net....? Do I need
to use the customvalidation. Can anyone give me an example? Thanks in
advance for the help
*** Sent via Devdex http://www.devdex.com ***
Don't jus... more >>
ASP.net: Error "Exception Details: System.InvalidOperationException: The ConnectionString property has not been initialized."
Posted by Tony at 6/15/2004 2:48:49 PM
Dear All,
When I run an example program on the
http://www.dotnetjunkies.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/data/datagrid1.src&file=VB\datagrid1.aspx&font=3
I received an error message:
"The ConnectionString property has not been initialized.
Des... more >>
Solution - Messy Visual Studio Editor
Posted by Peter O'Reilly at 6/15/2004 2:24:59 PM
I've read here and have experienced much lament about the Visual Studio
Editor rearranging text when switching to and from the design and HTML view.
I've stumbled upon a solution to remedy such problem which is to simply to
remove the MS_POSITIONING attribute from the HTML body tag.
I did such... more >>
datagrid bidirectional sorting
Posted by mark at 6/15/2004 2:23:28 PM
i have populated a datagrid succesfully and enabled sort successfully except
its not bidirectional - how do i do this ?
this is my code for sorting
Private Sub DataGrid1_SortCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridSortCommandEventArgs) Handles
DataGrid1.... more >>
Developing on a server...
Posted by Filippo at 6/15/2004 2:15:56 PM
Ciao,
On a server I have some COM objects I can't install on my workstation as it
works only on Windows server; I created via VS.NET 2k3 an ASP.NET using the
frontpage extensions and everything work fine except I can't run it in
VS.NET because it says there are some problems using the debug, a... more >>
IIS 5.0 + Win 2000 Server + .NET 1.1 => customErrors stopped working...
Posted by franknewsgroups NO[at]SPAM yahoo.com at 6/15/2004 2:01:11 PM
I have an IIS 5.0 server that is running both .NET 1.0 and .NET 1.1
applications.
I installed .NET 1.0 first.
Recently I added .NET 1.1 just for specific new IIS virtual
directories.
A problem I've encountered is that for some reason my customErrors
<customErrors mode="On" default... more >>
Do clients need .NET Framework?
Posted by dw at 6/15/2004 1:41:12 PM
Hello, all. This may sound like a silly, newbie question, but when an
end-user comes to an ASP.NET page via his/her browser, does he/she need to
have the .NET framework installed for it to work properly? Thanks.
... more >>
Dynamic Web Button command not firing
Posted by Klom Dark at 6/15/2004 1:25:01 PM
I've got a weird problem going on - I've got a table of dynamically created buttons. Each button has the X/Y value of the buttons position in the table assigned to it's CommandArgument property and the name of a common command (btn_Command) assigned to it's Command property. The creation of the tabl... more >>
Not possible to maintain 100% width.....
Posted by John Smith at 6/15/2004 1:03:14 PM
Here is my HTML table formatting code.
<table border="1" width="100%">
<tr width = "100%">
<td
width="33%">11asdhagdshaskgashjgahjgadhjgdjshdgasjdgajdgadjhgdgahjdgadhjsgad
hagdahjga</td>
<td
width="33%">11asdhagdshaskgashjgahjgadhjgdjshdgasjdgajdgadjhgdgahjdgadhjsgad
ha... more >>
PopUp a confirmation message
Posted by Al Cadalzo at 6/15/2004 12:58:59 PM
I want to respond to a submit button click on a form by writing to a
database then display a popup confirmation window that just has a 'Success'
message and an OK button on it that returns the user to the form.
I've been playing with the RegisterStartupScript method to register my
javascript t... more >>
What is this ??!
Posted by JezB at 6/15/2004 12:54:18 PM
I am a beginner in ASP.NET and web programming in general.
I have seen some examples on the internet in which some text set by
server-side code is "embedded" as a placeholder directly into client-side
html text (in the .aspx file). The syntax in the html text is, for example
:-
<p>Some clie... more >>
problem extending a webcontrol
Posted by SoftLion at 6/15/2004 12:41:38 PM
Hi,
I've created a default asp.net web page and dragged a DataGrid inside it.
I would like to create a simple custom class derived from DataGrid to hide
all relevant code in it, instead of putting the code (especially for the
events) in the _default class.
This class is called DGMGrid2. I rep... more >>
VS.Net 2003 Question...
Posted by John Smith at 6/15/2004 12:31:43 PM
How to clear text in "Command Window - Immediate".
I am using VS 2003.
Thanks,
John
... more >>
Alternatives
Posted by SKG at 6/15/2004 12:26:12 PM
I know how to download file using datagrid to excel. But suppose i have
100,000 rows how can i accomplish.
Will datagrid stop or its limited to how much memory i have
Thanks!!!
... more >>
Command button and page_load event
Posted by Rebecca at 6/15/2004 12:24:02 PM
I have a dynamically created command button on a .net page that adds 1 row to a sql server table when clicked. The page_load event load rows from that table for the user to view, but for some reason it is not loading the most recently added record when the page is reloaded from the command button c... more >>
dropdown calendar in ASP.NET
Posted by Grey at 6/15/2004 12:17:14 PM
I want to create a dropdown calendar instead of popup. the calendar control
should be display underneath of the textbox. Does anyone can suggest some
samples for me ?
Million thanks
... more >>
Configuration Error
Posted by Arne at 6/15/2004 11:32:01 AM
I have an ASP net with utility DLLs that are called from code behind pages. Sometimes I can't load these DLL. I get access denied. The system looks in c:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config and can't find any configuration. These DLLs are not in GAC that are local to my a... more >>
Using ActiveX Controls in ASP.NET or ASP
Posted by matttk NO[at]SPAM gmail.com at 6/15/2004 11:29:57 AM
Hi,
I have an activex control created using Sun's javabeans activex
bridge, and, as such, it must be installed in a certain directory (the
JRE home) if is to be installed locally....
What I would like to do is use this activex control in ASP or ASP.NET.
I've seen various ways to do it but I... more >>
Connection to Access database
Posted by Josh Brown at 6/15/2004 11:20:12 AM
I have some code setup that emails me with details when an error occurs. The
database i am connecting to is in MS Access 2000... the error i get is:
"ExecuteReader requires an open and available Connection. The connection's
current state is Open, Executing."
Is this actually an error? I've n... more >>
Run an html page on the client's pc
Posted by James Cooke at 6/15/2004 11:18:55 AM
The clients that connect to my webserver all have a bunch of html files
located on their hard drives, ie
c:\myfiles\html1.htm
c:\myfiles\html2.htm
c:\myfiles\html3.htm
c:\myfiles\html4.htm
c:\myfiles\html5.htm
These html files will start up some flash movies.
I want them to be able to... more >>
Sharing variables across 2 Applications
Posted by Mothish K at 6/15/2004 11:16:35 AM
Hello,
I am trying to connect 2 of my asp.net applications using context.items
collections
to share the variables.
but it says Could not load type 'Proj2.SignIn'.
I have set the authentication mode="Forms"
but still it says the same..
is there any other way to transfer my asp form varia... more >>
Firing JavaScript methods from code behind
Posted by Jim at 6/15/2004 11:12:01 AM
Group,
How would I go about firing a JavaScript method from a C# method in the aspx code behind file? It seems as though this could not be done since JavaScript is executed from within the Web browser and C# is executed on the server.
Thanks for your consideration,
Jim... more >>
Page Load event fires twice
Posted by Magdelin at 6/15/2004 11:12:01 AM
Hi,
I have a BasePage class from which all other ASPX pages of the project is inherited. The BasePage class implements Page_Load event handler. All child pages have its AutoEventWireUp property set to false.
I have included the code used to create the BasePage and one of the child pages below... more >>
problem with bound repeater
Posted by Benjamin Bittner at 6/15/2004 11:11:39 AM
Hi NG,
my problem is pretty simple i think. ive got a repeater with a textbox and a
button. after submitting the page with the button, i want to get the
textbox.text value. but i dont seem to find a way. here is what ive tried so
far:
Dim dbDatum As String = CType(FindControl(txtDatumE.Client... more >>
Debugging problems
Posted by Ben at 6/15/2004 10:48:20 AM
I am getting the debuggin error: "The breakpoint will not currently be hit.
No symbols have been loaded for this document."
Let me set the background here. Our debugging was working, our network
services group tried to setup debugging without the need for administrator
rights. I got the erro... more >>
datgrid and sql bit field
Posted by SKG at 6/15/2004 10:28:53 AM
how can i avoid datagrid from showing sql bit values as true or false.
TIA
... more >>
IE Error "operation aborted"
Posted by SKG at 6/15/2004 10:26:52 AM
I have a web page with customized datagrid and a usercontrol. Sometimes iam
getting
"operation aborted" internet explorer cannot find site <web page name..>
when i click back button i see the page is loaded.
I found my viewstate has lot of junk 3 to 4 pages.
I increased temporary cache,delet... more >>
Weird Dotnet Issue
Posted by Hai Nguyen at 6/15/2004 10:24:24 AM
Hi all
I encounter a problem but don't know how to solve it.
Here is my situtation:
I have a web page, 2 user controls: A and B. A and B are dynamically loaded
into the main page. In B there are 4 buttons, TextBox, object and
classes,...There is one object I want to save all of its values... more >>
structure
Posted by Muhammad Sheikh at 6/15/2004 9:56:14 AM
what is the best way of sharing a structure among different pages of my
asp.net application?
... more >>
Querystring params
Posted by Terry at 6/15/2004 9:48:53 AM
Hello,
I need to pass a string in my parameter list to another
page.This contains the ampersand character. How do I get
around to passing this
Any help would be appreciated
regards... more >>
Request.Form("textbox1") always returns empty after Refresh?
Posted by grawsha2000 NO[at]SPAM yahoo.com at 6/15/2004 9:45:18 AM
Greetings all,
I use request.form("textbox1") to get data back to page,
dim str as string
str = request.form("textbox1").tostring
But str is always empty after refresh???? I use asp.net textbox
control with form posting to itself.
MTIA,
Grawsha... more >>
ASP.NET 2
Posted by Erik H. at 6/15/2004 9:14:43 AM
Anybody know if there's a forum out there discussing ASP.NET 2 along with
the many changes that I have heard are coming down the pipe?
... more >>
Re: Pivot table control
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 8:19:07 AM
Kevin,
I wish PivotTables were that simple!!! When you take a look at a good
PivotTable product the feature lists are astonishing.
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Re: download files
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 8:17:45 AM
Mike,
I get you. Take a look at this method in the Framework: -
System.IO.Directoy.GetFiles()
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Simple problem for Newbie???
Posted by Tim::.. at 6/15/2004 8:11:01 AM
Hi,
I read this really interesting artical on how to use roles in asp.net but unfortunately I'm not sure how you get this to work with a form??? I would be grateful if someone could tell me how I put this code into action!
I've just started using VS 2003 and am new to asp.net so would be grat... more >>
Re: download files
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 7:34:54 AM
Mike,
You've not stated what problems you're having here ... are you looking
for a Remote Source control product? http://www.sourcegear.com may help
you there, if not, then what're you after?
Cheers,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Re: Datagrid footer bound dropdownlist
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 6:59:59 AM
Mohamed,
Move your DataBinding code to the Page_PreRender event from the
Page_Load event, this will fire AFTER the Button_Click event.
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Creating web applications NOT via IIS console
Posted by Michał Januszczyk at 6/15/2004 6:35:01 AM
is there any way to promote programatically a directory
(located within inetpub directory subtree) to web application?
Also I would like programatically add new IASPI mapping
(for some custom file extension to particular DLL)
for this newly created web application.
Thanks for help
Mich... more >>
Session problem
Posted by Srinivasa Raghavan at 6/15/2004 6:04:01 AM
Hi,
I have a web site which uses FormAuthentication. After the logging in, i store the user credentials in a Session Variable which is not updated any where in the website. After certain point it seems that users are able to view other people pages with their credentials, even though o... more >>
Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1 - AGAIN
Posted by paul clayton via .NET 247 at 6/15/2004 5:28:32 AM
Ok, there is alot of info about this and I have tried everything but still get the above error!
1. shut down ALL applications
2. Uninstall IIS 5.1
3. Uninstall .NET FrameWork 1.1
4. Reboot
5. Install IIS 5.1
6. Reboot
7. Install .NET Framework 1.1
8. Reboot
9. Find... more >>
Re: What is this ??!
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 5:18:46 AM
Jez,
I'll try and answer your questions: -
- what is the proper name for this mechanism ?
The following is a short cut for Response.Write(), <%= x %> it can be
expressed as <%= Response.Redirect(x) %>.
- what actually happens at run-time ?
The server injects the variable, expressed a... more >>
Session Problems
Posted by Srinivasa Raghavan Sethuraman at 6/15/2004 5:16:25 AM
Hi,
I have a web site which uses formAuthentication. After the
logging in, i store the user credentials in a Session Variable which is
not updated any where in the website. After certain point it seems that
Users are able to view other people pages with their credentials, even
thou... more >>
Button Click events only firing on second click
Posted by Ben Fidge at 6/15/2004 5:12:34 AM
I've got a problem where some buttons placed on a user
control are only firing their OnClick events when the
user clicks on them for the second time.
I've got the situation where some common functionality
(Insert/Edit/Save/Cancel) is wrapped up in a user
control. This control is embedded ... more >>
Re: structure
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 4:39:31 AM
Muhammad,
James' sample is great, you might also want to take a look at an
article I put together a while ago on the subject: -
http://aspalliance.com/431
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Pivot table control
Posted by PontiMax at 6/15/2004 4:14:02 AM
Hi,
does anyone know some handy pivot table server controls?
I came across Chart FX OLAP (including advanced pivot functionality), but the license costs are about €3000 per server - which is way too much. Then there are the MS Office Web Controls; unfortunately these are ActiveX controls th... more >>
Re: Friendly Url
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 3:59:38 AM
Hi,
You want to take a look at Path ReWrite: -
http://www.15seconds.com/issue/030522.htm
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Friendly Url
Posted by Boni at 6/15/2004 3:41:01 AM
I must make a web project. It's a dynamic web site with 3 template and the page content is in a database.
So I have a Url www.mysite.com/template1.aspx?IdPage=2
This is not good if I send a link of any page
Can I make something with .net ( c# ) to intercept someone as www.mysite.com/channel1... more >>
How to compromise on ValidateRequest?
Posted by AFN at 6/15/2004 3:32:53 AM
I have a form with 15 fields. I want users to be able to enter "<" and ">"
characters into 1 of those fields without IIS catching it and disallowing
the whole page. I did some reading and I *think* that means I MUST set
ValidateRequest=False. So, two questions:
1) Do I have to then pass ... more >>
Re: how to access client harddisk?
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 3:27:22 AM
Angus,
You might be better working in Access for this, using VBA you should be
able to build some "sync" functionality - this sounds like the better
solution, is this viable?
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Re: I want to insert a word in a database. What is wrong in this line?
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 2:50:55 AM
Miguel,
Can I recommend that you use code and not declaritative syntax?
http://www.123aspx.com/redir.aspx?res=326
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Re: project deployment question :)
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 2:09:00 AM
Chris,
You don't need to deploy any .cs files or the priject files, just the
..aspx, ascx, asax, .config, images/css, and .dll's.
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Re: structure
Posted by Phil Winstanley [Microsoft MVP ASP.NET] at 6/15/2004 2:01:17 AM
Muhammad,
I assume you mean the Visual style of the pages?
There are a few ways this can be done, I personally use
WilsonMasterPages: -
http://authors.aspalliance.com/PaulWilson/Articles/?id=14
Hth,
Phil Winstanley
Microsoft ASP.NET MVP
http://www.myservicescentral.com
... more >>
Sourcesafe/IDE probem?
Posted by guy at 6/15/2004 1:54:01 AM
When working on a fairly busy (shecked out) page in design mode I added a button. When dropping the button onto the form Sourcesafe checked the file out (although it was already checked out) and after a ~20second delay all controls on the form vanished. THe HTML was then completely empty and the pa... more >>
Iterate every Page Page.Controls collection in a project at design-time
Posted by jamied1 NO[at]SPAM breathe.com at 6/15/2004 1:32:25 AM
Hello,
I'd like to iterate through each Page of my ASP.NET project from
within a Custom web control and access the Page.Controls collection.
I've tried using Reflection on the web project assembly, but the
controls collection count was zero. While this method gives details
of the private c... more >>
Image/ImageButton Help
Posted by Jason at 6/15/2004 12:36:39 AM
I have been trying to display pictures on my webpage on both imagebutton and
image controls. I have tried adding the pictures at runtime
(image1.imageURL = "pic.jpg") and setting the imageURL in the properties at
desing time. When I look at the webpage on my computer, the picture
displays just... more >>
table cell
Posted by ven at 6/15/2004 12:01:58 AM
hello
i have problem with response.redirect method, namely i have default page
home.aspx where is html table :
<%@ Page Language="VB" %>
<script runat="server">
' Insert page code here
'
</script>
<%@ Register TagPrefix="eCommerce" TagName="Menu" Src="Menu.ascx" %>
<html>
<... more >>
|