all groups > asp.net > july 2003 > threads for saturday july 19
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
ASP.NET & MySQL
Posted by David Whitehouse at 7/19/2003 10:20:56 PM
Ok, I have a MySQL database on my server, and i want to test my ASP.NET
pages on my localhost. How do i do a DNS-less connection to it and pull data
from the database? I've tried some stuff from asp.net but nothings working.
-David
... more >>
asp.net security
Posted by john at 7/19/2003 9:05:49 PM
I am trying to use the excel.application object from within a asp.net page.
I keep getting access denied on the <machinename>/aspnet account. I have
added this user to every security group on the machine (Adminstrators,
<machinename>/Admins, <machinename>/Authors etc.) as the asp.net error
mess... more >>
Stateful ListBox
Posted by Wickwack at 7/19/2003 6:20:24 PM
Hi -
I'm using the ASP.NET ListBox control for a project. I am working
with large lists, so I would like the server to process clicks on the
box. When the user clicks an item, the server should check to see if
the item was already selected and invert the "Selected" attribute for
the item. E... more >>
System.Net.HttpWebRequest with HTTPS
Posted by dgiard at 7/19/2003 3:59:57 PM
I am using the System.Net.HttpWebRequest object to POST data to an HTTPS web
page.
Other than prefixing the URL with "HTTPS://", do I need to do anything in my
code to indicate that this is SSL?
Here is my code:
// Create Web Request
string url = "https://something.net/something.dl... more >>
WebException.TrustFailure from HttpwebRequest
Posted by G Joseph at 7/19/2003 2:59:03 PM
Hello,
I am getting a WebException.TrustFailure when I call
HttpwebRequest.GetResponse. Anybody has an idea how to
resolve this issue? The code works correctly in other
sites. I noticed that, when I browse to the site using
IE, I am getting a security Alert messagebox prompting to
accept... more >>
Return Value from SqlCommand in ASP.Net
Posted by Adhik at 7/19/2003 2:54:24 PM
Hi,
My application has frontend in ASP.Net, middle tier in vb.Net and backend
SQL Server.
I have created one function in Middle tier for adding any records by passing
Procedure Name and Parameters Array.
Here i am using SQLCommnd Object to Call procedure, to take return value
i.e. Id or fl... more >>
JavaScript Access to Button in form tags (webcontrol or html button)
Posted by Wes Weems at 7/19/2003 2:02:17 PM
Hello,
I have a button called LoadBtn, which exists in <form name="Form1"
runat=server></form> tags.
I then have javascript loaded outside of that form, and apparently I cant
call any methods of that object (particularly the disabled property)... as
it says:
'document.Form1.LoadBtn' is n... more >>
DataView
Posted by grolms at 7/19/2003 1:14:36 PM
Sorry for my bad englisch. I have qustation about
DatView .How this workind ? I mind , the databind is only
window to dataset . But if I add to dataview this not
added to dataset row ??? And if I in the datagrid call
edit item , then e.item.itemindex not corresponding to
dataset . where is... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
licensing
Posted by Joël at 7/19/2003 12:44:04 PM
Hi !
I want to create a licensed component.
I use the LicFileLicenseProvider class as parameter of the LicenseProvider
attribute.
Finaly I use the LicenseManager into my component as describe into the msdn
documentation.
Unfortunatly the next steps are evasive.
What to do next ? I think I nee... more >>
clear the display box of dropdownList in code
Posted by Northern at 7/19/2003 11:27:48 AM
I need to write code clear the display box of my
DropDownList (something like clear current selected item)
while still keep the loaded item list in the DropDownList.
I tried DropDownList's ClearSelecttion() method and set
SelectedIndex to -1 but neither works.
How should I do this?
Th... more >>
is Response.WriteFile ok with large files?
Posted by Jerry J at 7/19/2003 11:25:02 AM
I am using Response.WriteFile to send file streams back to
web clients.
My question is this:
Can I use Response.WriteFile(SomeFilePath) for any size
file? Will it handle chunking the data back to the client
or do I have to do it myself?... more >>
RegisterClientScriptBlock to register OUTSIDE form tags
Posted by Wes Weems at 7/19/2003 10:33:19 AM
Hello,
I currently have javascript and vbscript that needs to be spat out based on
certain conditions in the codebehind. My vbscript code relies on the OnLoad
event. However with the RegisterClientScriptBlock(), sticking the code in
the form tags, I cant seem to get the bastard to work.
B... more >>
Accessing control on calling page
Posted by John Knoop at 7/19/2003 3:50:35 AM
Hi all
I have a page that contains a label (<asp:label id="lbl" runat="server">).
Further down in that same page, I include the contents of a different page
using Server.Execute.
Now, I need to be able to set the text property of my label from inside that
second page. How can I do this? Wan... more >>
In web.config, how to specify a page that can be accessed without login?
Posted by TaeHo Yoo at 7/19/2003 3:07:52 AM
In my current web.config, I have these lines
-----------------------------------------------------------
<authentication mode="Forms">
<forms name="frmAuthentication" loginUrl="login.aspx" />
</authentication>
-----------------------------------------------------------
How do I need to modi... more >>
Strange behavior with HttpCookieCollection
Posted by adlaird NO[at]SPAM earthlink.net at 7/19/2003 2:39:45 AM
Hi,
I created a simple webform, put a test button on it and implemented a
click handler that looks like so:
private void btnTest_Click(object sender, System.EventArgs e)
{
HttpCookieCollection oCookReq =
HttpContext.Current.Request.Cookies;
HttpCookieCollection oCookRes... more >>
Creating a yes/no messagebox in Javascript
Posted by John at 7/19/2003 2:33:54 AM
Hi all,
Is it possible to create a Javascript messagebox that shows the buttons Yes
and No instead of normal confirm?
Regards
John.
... more >>
how to get application path ?
Posted by Lloyd Dupont at 7/19/2003 12:18:18 AM
when I'm in a page or a control I could write
MapPath(anUrl);
to get local (on disk) path of an URL.
however I'm writting an HttpHandler, and I struggle to find similar
functionality.
any thought ?
... more >>
|