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 > june 2004 > threads for sunday june 13

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

attribute concatenation problem
Posted by Pinkesh Achhodwala via .NET 247 at 6/13/2004 11:37:50 PM
hi all, please see the followin line : <input type="submit" name="btnRemove" value="Remove" onclick="if (typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); " language="javascript" id="btnRemove" class="button" onClick="alert(2);" /> In above line, u can see that onclick event...more >>


window won't close...
Posted by EMW at 6/13/2004 11:00:01 PM
In my ASPX page I have the following code behind which is activated when the user clicks on a linkbutton: Dim sFeatures As String = Chr(34) + "DiaglogHeigth:50px;DialogWidth:412px;center:yes;help:no;resizable:no;scroll :no;status:no;" + Chr(34) Page.Response.Write("<script language=" + Chr(34...more >>

Compile ASP.NET via command line
Posted by Kevin at 6/13/2004 10:19:01 PM
Hi all, Can someone please tell me how to compile an ASP.NET project via the command line using just the .NET Framework SDK? I have completed an ASP.NET project in VS.NET, but due to certain reasons, I am taking my copy of VS.NET off my machine and there will be someone else developing the projec...more >>

bringing the value to the top in the drop down list.
Posted by Asha at 6/13/2004 10:08:01 PM
Greetings people, I have a drop down list with populates with a list of countries... and i want to add a new value to that drop down list call "<New>" the problem is, it keeps staying at the bottom of the page. how can i bring this value up? below are my codes, plz help meout. thanks. ...more >>

.NET/General Advice Sought
Posted by Jolly Student at 6/13/2004 9:09:07 PM
Dear Colleagues: Thank you for taking the time to read this - I recently posted here with regards to what was possible with .NET. I have been working as a systems engineer for about fifteen years now. My "specialties" have been basically anything it took to get the job done, althou...more >>

how to write doc in aspx
Posted by sincethe2004 at 6/13/2004 6:19:29 PM
By using C# aspx, I want to start a word document and place some text into a word doc file, when I call the following statement: Object ApWord = Server.CreateObject("Word.Application"); there is an UnauthorizedAccessException message comes out, have no idea how to grant rights for this pro...more >>

How to call exe in .aspx C#?
Posted by sincethe2004 at 6/13/2004 5:12:56 PM
How to call exe in .aspx C#? ...more >>

Passing Variables
Posted by James at 6/13/2004 4:27:02 PM
Hi. I need to be able to pass a few variables on a button click to refill a form on a new page. I am using a few textbox's but when the button is clicked the values are lost - I am convinced that these variables are being disposed - but why? - and how can I fix it. thanks James ...more >>



get file download size
Posted by Abubakar at 6/13/2004 4:08:05 PM
Hi, I want to know the size of a given file on the server before downloading it. Say I'v a zip file whose url I know, now I want to know what size it is on the server. Thanx, Abubakar. ...more >>

Default paging, how to show text "page nr.:"
Posted by Guoqi zheng at 6/13/2004 3:37:42 PM
Dear sir, I am using the default paging function of datagrid. Below is my code. <PagerStyle NextPageText="&gt;&gt;&gt;" PrevPageText="&lt;&lt;&lt;" HorizontalAlign="Center" Mode="NumericPages"></PagerStyle> It works fine, it show a 1 2 3 4 5 page nr. at the bottom of datagrid. However...more >>

how to encode .aspx source code
Posted by sincethe2004 at 6/13/2004 2:50:42 PM
anyone knows how to encode .aspx source code like we did by Screnc in .asp before? ...more >>

asp.net problem
Posted by MarcoG at 6/13/2004 2:17:58 PM
I installed VB.Net, but when I want to open a new web application, a message says: "that in the server is not running the ASP.Net V 1.1" I don't now what to do. I need advice ASAP. ...more >>

2 tables and 2 relationships in a datagrid
Posted by Ozer at 6/13/2004 2:07:01 PM
Hi guys, I have 2 tables. First one is "Cities" and second one is "Reservations". In reservations table I have 2 fields to contain FromCity and ToCity IDs. But I have no idea to bind all of this data in same datagrid. Thanks for any help. Bye Ozer...more >>

How to CreateObject in C#?
Posted by sincethe2004 at 6/13/2004 1:43:42 PM
When using ASP.NET C#, how to CreateObject like this Set ApWord = CreateObject("Word.application") ...more >>

questions on Asp.net & Sql Server
Posted by Edward at 6/13/2004 12:34:27 PM
hi, I've one table with an identity column, how can I get its value after Insert operation. if I use stored procedure, I can do so like below: alter procedure sp_.... ( @item out ) { insert .... select @@identity ) } in asp.net , I can add one pa...more >>

Run Server-side Function *immediately after* executing client-side JavaScript.
Posted by Guadala Harry at 6/13/2004 12:21:59 PM
Suppose I have a hyperlink that, when clicked, executes a JavaScript function on the client. Separately I have a button that, when clicked, causes a post back and executes a server-side function, as in the following: <a id="HyperLink5" href="javascript:DoSomethingInClient()">Do Something</a> ...more >>

Catching forms authentication expiry
Posted by Andy Fish at 6/13/2004 9:36:12 AM
Hi, I have an asp.net web app whereby I authenticate the user with Forms Authentication and store details about him in the session. I want to be able to catch an event when the users authentication period expires but I can't see any way to do this. Currently I have set the forms authenticat...more >>

CSS and textbox size
Posted by Maziar Aflatoun at 6/13/2004 8:13:33 AM
Hi everyone, I have the following EditCommandColumn <Columns> <asp:BoundColumn DataField="Qty" HeaderText="Qty" HeaderStyle-Font-Bold="True" HeaderStyle-CssClass="normtext" ItemStyle-CssClass="normtext"></asp:BoundColumn> <asp:EditCommandColumn ButtonType="LinkButton" EditText...more >>

File Upload Issue - INPUT type="file" and Use of .click()
Posted by HVG at 6/13/2004 7:19:25 AM
Hi, does anyone know why using ".click()" on a <INPUT type="file"> control should be a problem? - the html file selction control is on a very plain webform page with just the <input type="file"> control and a submit button. - the ".click()" method is simply used to automatically open the fil...more >>

Response.Redirect() question
Posted by Axel Dahmen at 6/13/2004 4:37:40 AM
Hi, I'm wondering what is Response.Redirect(string) equivalent to: Response.Redirect(string,true) - or - Response.Redirect(string,false) ? The MSDN Library is unclear on this. TIA, Axel Dahmen ...more >>

The opertation has timed out
Posted by Shyam at 6/13/2004 1:40:01 AM
I am trying to open an ASPX file in a new window which displays a report in PDF format (using SQL reporting service). The query to display the results takes about 3 minutes in the query analyzer. But I am getting operation timed out error in the new window that I open before even before 2 minutes. I...more >>

OnClick issue
Posted by EMW at 6/13/2004 12:57:28 AM
Hi, In my datagrid I have the first column set as a buttoncolumn with linkbuttons. In my code I have some line to color the row the cursor is hovering over and what to do when the user clicks on a rowitem in the first column. It will then respond to the OnClick event and do a postback so that...more >>


DevelopmentNow Blog