Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > asp.net > october 2004 > threads for sunday october 3

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

How to play sound
Posted by Lord2702 at 10/3/2004 10:54:25 PM
I want to play a sound file, which is on my server, and approximately 5 - 7 MB it is .Wav file. or .mp3, I want to play this file so that user of my site can click on a link to play this file. Is it possible to play a sound file in .aspx page. If it is through webservice, that is also good. C# co...more >>


Calling another form
Posted by John at 10/3/2004 10:17:59 PM
Hi How can I move from one aspx page to another programmatically? Thanks Regards ...more >>

Drop down list in DataGrid
Posted by Dave at 10/3/2004 9:45:04 PM
Hello. I want to show DropDown List control (with some values) in place of TextBox in DataGrid while editing. I can I do it? ...more >>

Problem with stored procedure
Posted by Justin at 10/3/2004 9:21:02 PM
I am trying to query two tables with a stored procedure but I get the following error: "Procedure Details has no parameters and arguments were supplied." Here is my stored procedure as created by Visual Studio: ALTER PROCEDURE dbo.Details AS SET NOCOUNT ON; SELECT Events.KeyID, Events...more >>

Problem with stored procedure
Posted by Justin at 10/3/2004 9:19:02 PM
I am trying to query two tables with a stored procedure but I get the following error: "Procedure Details has no parameters and arguments were supplied." Here is my stored procedure as created by Visual Studio: ALTER PROCEDURE dbo.Details AS SET NOCOUNT ON; SELECT Events.KeyID, Events...more >>

Error with Page_Load
Posted by Patrick.O.Ige at 10/3/2004 7:43:05 PM
I have a Page load in my code:- Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Doing Something here End Sub And i want to call it by typing in "page_load()"[Code below] at the end of my page but its giving me the error:-" Argume...more >>

Require IE 5+ or Redirect
Posted by Guadala Harry at 10/3/2004 6:42:01 PM
I have a bunch of pages that host controls that work only on uplevel browsers. While most of my users have IE6, I'd like to know how to detect the browser they are actually connecting with and redirect them to an alternative page when they connect with a non IE browser. I googled for this and ...more >>

declaration expected
Posted by Simon Harris at 10/3/2004 6:35:08 PM
Hi All, I have a page which I want to accept an ID on the querystring - I'm trying to get this ID into a hidden form field. I have the following code at the top of my page: Line 5: <script language="VB" runat="server"> Line 6: dim ResortID as integer Line 7: ResortID = Request.QuerySt...more >>



SetIndex and dropdownlist errors
Posted by naija naija at 10/3/2004 6:00:43 PM
Hi Guys, I have my .aspx below and i'm using SetIndex with selectedIndex with DropDownList to retrieve Data from my database!! My function of SetIndex is as follows:- Function SetIndex(ByVal TheItem As String) Dim ItemTypes As ArrayList Dim i As Integer ...more >>

[2.0] connection string and XXXprovider
Posted by Lloyd Dupont at 10/3/2004 4:48:44 PM
I'm trying to understand ASP.NET 2.0 integrated security/login/profile/etc..... Running the Admin tool I get this added in my config file: <membership defaultProvider="AspNetSqlProvider" /> <profile defaultProvider="AspNetSqlProvider" /> <roleManager enabled="true" defaultProvider="AspNetSq...more >>

Referring to a frame's content from another frame
Posted by Microsoft at 10/3/2004 3:12:21 PM
How do I refer to the content of one frame from another frame. Depending on which command button is pressed in one frame I wish to chnage what is displayed in another frame. Thanks Colin ...more >>

DataGrid Edit
Posted by Jim Heavey at 10/3/2004 2:55:02 PM
Suppose you had a Data Grid which had 7 columns in the normal mode. but when you selected "edit" mode you wanted 6 columns to appear on line 1 and the 7th column to appear on Line 2 under column 6. Is there a way to do this with the DataGrid, or is the only way to do this is to used the DataL...more >>

Add Items From On DropDownList to Another
Posted by Jim Heavey at 10/3/2004 2:23:07 PM
I am wanting to add all the dropdown items from one dropdown control to another. I see that there is a method for "AddRange", but it will not accept the property returned from the other control which returns a ListItemCollection. I know that I can loop through them and add them one-by one,...more >>

Delete confirmation
Posted by Dave at 10/3/2004 2:05:47 PM
How can I add the confirmation dialog on record delete to the "Delete" command column in DataGrid control? ...more >>

Verifying users
Posted by John at 10/3/2004 12:46:55 PM
Hi I have several web forms that require users verification by entering a code before they are allowed in. I have created a separate web form for entering and verifying user code. How do I incorporate this with web forms that require security? I am very new to this and would appreciation some ...more >>

How to dynamically stream images through Browser?
Posted by Raed Sawalha at 10/3/2004 11:52:12 AM
I have seen on some websites, image references that instead of image, are other ASP, ASP.NET or CGI pages. The link would be like <img src="imagegenerator.asp?imageid=1235">. I would like to use this technique to dynamically deliver images to the user. How do i create the "back-end" page to r...more >>

2.0 Formview question
Posted by CJ Taylor at 10/3/2004 11:43:57 AM
I'm using a formview and trying to bind a hyperlink field but can't seem to get it to work... I have a control in my <ItemTemplate> declared like this. <asp:HyperLink ID="hyp_ConfigureBroker" Runat="server" NavigateUrl='~/Brokers/ConfigureBroker.aspx? gTraderID=<%# Bind("gID") %>'>Con...more >>

Editing static text in ItemTemplate
Posted by Andre Viens at 10/3/2004 10:49:11 AM
Hello, I have a repeater control I am using to display items that are comma separated. The code looks like this: <asp:Repeater id="rptSummary" runat="server"> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, Container.DataItem.Row.Table.Columns(0).ColumnName)%>, </I...more >>

only adminusers can login
Posted by freetorn2002 NO[at]SPAM yahoo.ca at 10/3/2004 8:45:14 AM
Hi, I got stuck with this for more than a week. I developed a asp.net project in my local machine and deployed using websetup project. The problem is only the admin users can view the page, When other try to view it, it pops up for the login , password and domain. I am using windows authenti...more >>

querystring problems
Posted by gh0st54 NO[at]SPAM hotmail.com at 10/3/2004 8:09:58 AM
Hi i'm scratching my head has to why is : sQry+="type=0"; sQry+="&gender="+ this.ddlGender.SelectedValue.ToString(); sQry+="&sexuality="+this.ddlSexuality.SelectedValue.ToString(); sQry+="&country="+this.ddlCountry.SelectedValue; sQry+="&region="+this.ddlRegion.SelectedValue.ToString(); ...more >>

Changing web control values from Javascript
Posted by marcuswade NO[at]SPAM m2software.co.uk at 10/3/2004 5:26:46 AM
Hi, I have a strange problem here... I have a simple onclick event on an ASP.NET button that does the following Javascript... document.getElementById("Button1").text = "Cancelled"; However, when I inspect the Button1.text value from code behind the it shows the original value of Button1 a...more >>

Code not triggering
Posted by John at 10/3/2004 3:23:25 AM
Hi On my webform, in design mode when I double click on the button component, it creates a click sub for me. But when I add code to the click event and run the web form the code does not seem to be executed. I have verified this by setting break points. Why would clicking the button not execut...more >>

TemplateColumn
Posted by Dave at 10/3/2004 2:58:33 AM
Hello. Can anybody explain me how to use TemplateColumn? ...more >>

Control must be placed inside a form tag
Posted by John at 10/3/2004 2:54:24 AM
Hi I have dragged a few controls over to a web form. The html code generated is as follows; <asp:TextBox id="StaffCode" runat="server"></asp:TextBox>&nbsp; <asp:Button id="Submit" runat="server" Text="Submit"></asp:Button>&nbsp;&nbsp; <asp:RequiredFieldValidator id="RequiredFieldValidator1...more >>

Trusted connection to SQL
Posted by kai at 10/3/2004 2:46:56 AM
Hi, All When I create a trusted connection from ASP.NET to SQL Server, I receive the following error message: Login failed for user 'MachineName\ASPNET' I looked Knowledge base artical http://support.microsoft.com/default.aspx?scid=kb;en-us;316989 but I do not ubderstand the solut...more >>

multipart/form-data problem
Posted by Alex Sibilev at 10/3/2004 2:35:12 AM
Hello, I have a really weird problem I've been trying to solve it without any luck for the last couple of hours :( I'm writing a "conference board" application (quite similar to ASP.NET forum). I don't use server controls in it (apart from Page). The problem occurs on the page where vis...more >>

Help me in making users/deleting users in active directory
Posted by Sara rafiee at 10/3/2004 12:40:47 AM
Hi there, I need help in active directory, I want to make user in it and delete a user, but I couldn’t. could you please help me. as follow it is a code which should make user but it gives me error message. pLease if anyone could correct it and send it to me. Thanks in advance. Regards ...more >>


DevelopmentNow Blog