Hi , Does anyone know how to detect when a user has clicked on the X in the browser. As far as I know, we can use onunload event of javascript to detect and open a new window(page) where I can do my processing. But this wont work if user has pop-up blocker enabled on his m/c. any idea how we can do it in the same page, without going to new page. I have to execute a function when user closes the browser window. Urgently help needed. Thanks in advance.
Thanks and Regards Prashanth -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 30, 2005 1:49 AM To: [email protected] Subject: [AspNetAnyQuestionIsOk] Digest Number 1422 ------------------------ Yahoo! Groups Sponsor --------------------~--> Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/saFolB/TM --------------------------------------------------------------------~-> There are 14 messages in this issue. Topics in this digest: 1. asp.net question From: loc tran <[EMAIL PROTECTED]> 2. Re: Value cannot be null From: "Real_Guy" <[EMAIL PROTECTED]> 3. Re: asp.net question From: Charles Carroll <[EMAIL PROTECTED]> 4. Re: Re: Value cannot be null From: Dean Fiala <[EMAIL PROTECTED]> 5. Active Users by Session From: "Iman Naseri Karimi" <[EMAIL PROTECTED]> 6. Program/code like browserhawk but free? From: Mike Appenzellar <[EMAIL PROTECTED]> 7. Deliver Cross Tab output to Users From: Stephen Russell <[EMAIL PROTECTED]> 8. RE: Deliver Cross Tab output to Users From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> 9. RE: Deliver Cross Tab output to Users From: Stephen Russell <[EMAIL PROTECTED]> 10. Re: asp.net question From: loc tran <[EMAIL PROTECTED]> 11. RE: asp.net question From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> 12. Multiple Buy Now buttons within the same datalist From: Mike Appenzellar <[EMAIL PROTECTED]> 13. RE: Multiple Buy Now buttons within the same datalist From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> 14. Re: Program/code like browserhawk but free? From: Charles Carroll <[EMAIL PROTECTED]> ________________________________________________________________________ ________________________________________________________________________ Message: 1 Date: Mon, 28 Nov 2005 16:45:15 -0800 (PST) From: loc tran <[EMAIL PROTECTED]> Subject: asp.net question Mr. Carroll...can a "newbie" asp.net programmer ask you a question? Charles Carroll <[EMAIL PROTECTED]> wrote: IndexServer (free from MS with WinServer products) will do what you want. On 11/24/05, john gera <[EMAIL PROTECTED]> wrote: > I'm designing a Job Recruitment Website, in which the admin person > searches for the right candidate for the job using certain keywords . > The only kind of candidate info is the ms word cv of each candidate. So > how can i search for keywords in each of the word documents. Is there > any way like that or Is that a impossible scenario in .net? > Or else should i force the candidate to create CV and store in the > database so that i can use that info for search > Which is the best approach? > Thanks in Advance SPONSORED LINKS Basic programming language Computer programming languages Programming languages Java programming language --------------------------------- YAHOO! GROUPS LINKS Visit your group "AspNetAnyQuestionIsOk" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- --------------------------------- Yahoo! Personals Single? There's someone we'd like you to meet. Lots of someones, actually. Try Yahoo! Personals [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 2 Date: Tue, 29 Nov 2005 03:04:33 -0000 From: "Real_Guy" <[EMAIL PROTECTED]> Subject: Re: Value cannot be null i have add the code to create the dataset OLE_DS = New DataSet() OLE_DA.Fill(OLE_DS, "mflightno") but the another error occured : "Object reference not set to an instance of an object." can you tell me what it is ? sorry asking you with a lot of questions, coz i am a newbie in ASP.NET thx --- In [email protected], Dean Fiala <[EMAIL PROTECTED]> wrote: > > You need to create the DataSet before filling it. > > OLE_DS = New DataSet() > OLE_DA.Fill(OLE_DS, "mflightno") > > > On 11/28/05, Real_Guy <[EMAIL PROTECTED]> wrote: > > Hi all, > > i tried co retrieve value from database. > > My code is like this: > > > > Dim OLEConn As OleDbConnection > > Dim sqlConn As SqlConnection > > Dim OLE_DA As OleDbDataAdapter > > Dim sql_DA As SqlDataAdapter > > Dim OLE_DR As OleDbDataReader > > Dim sql_DR As SqlDataReader > > Dim OLE_Comm As OleDbCommand > > Dim sql_Comm As SqlCommand > > Dim OLE_DS As DataSet > > Dim sql_DS As DataSet > > > > Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As > > System.EventArgs) Handles btnSubmit.Click > > Dim RecCount As Integer > > OLEConn = New OleDbConnection("Provider=SQLOLEDB.1;Password=;Persist > > Security Info=True;User ID=sa;Initial Catalog=AutoQplex;Data > > Source=localhost") > > OLE_Comm = New OleDbCommand("select count(flight_idx) from mflight > > where flightno='" & > > ddlFlightNo.Items.Item(ddlFlightNo.SelectedIndex).Text & "' and route > > ='" & ddlRoute.Items.Item(ddlRoute.SelectedIndex).Text & "'", OLEConn) > > OLEConn.Open() > > OLE_DA = New OleDbDataAdapter("select count(flight_idx) from mflight > > where flightno='" & > > ddlFlightNo.Items.Item(ddlFlightNo.SelectedIndex).Text & "' and route > > ='" & ddlRoute.Items.Item(ddlRoute.SelectedIndex).Text & "'", OLEConn) > > OLE_DA.Fill(OLE_DS, "mflightno") > > > > RecCount = OLE_DS.Tables("mflight").Rows.Count > > If RecCount = 0 Then > > msgBox("No Flight Number and Route", MsgBoxStyle.Information) > > End If > > End Sub > > > > but on OLE_DA.Fill(OLE_DS, "mflightno") error occured (Value cannot be > > null) > > > > i have tried to run SQL string in sql server and it return 0 > > (select count(flight_idx)....) > > > > can you tell me why this error occured and how to fix it ? > > > > thx > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > -- > Dean Fiala > Very Practical Software, Inc > http://www.vpsw.com > ________________________________________________________________________ ________________________________________________________________________ Message: 3 Date: Mon, 28 Nov 2005 19:26:10 -0800 From: Charles Carroll <[EMAIL PROTECTED]> Subject: Re: asp.net question I have been answering questions for newbies since 1996 -- I am not likely to stop anytime soon. Ask away. On 11/28/05, loc tran <[EMAIL PROTECTED]> wrote: > Mr. Carroll...can a "newbie" asp.net programmer ask you a question? ________________________________________________________________________ ________________________________________________________________________ Message: 4 Date: Mon, 28 Nov 2005 23:20:03 -0500 From: Dean Fiala <[EMAIL PROTECTED]> Subject: Re: Re: Value cannot be null Where did the error occur? On 11/28/05, Real_Guy <[EMAIL PROTECTED]> wrote: > i have add the code to create the dataset > OLE_DS = New DataSet() > OLE_DA.Fill(OLE_DS, "mflightno") > > but the another error occured : > "Object reference not set to an instance of an object." > can you tell me what it is ? > sorry asking you with a lot of questions, coz i am a newbie in ASP.NET > > thx > > --- In [email protected], Dean Fiala <[EMAIL PROTECTED]> > wrote: > > > > You need to create the DataSet before filling it. > > > > OLE_DS = New DataSet() > > OLE_DA.Fill(OLE_DS, "mflightno") > > > > > > On 11/28/05, Real_Guy <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > i tried co retrieve value from database. > > > My code is like this: > > > > > > Dim OLEConn As OleDbConnection > > > Dim sqlConn As SqlConnection > > > Dim OLE_DA As OleDbDataAdapter > > > Dim sql_DA As SqlDataAdapter > > > Dim OLE_DR As OleDbDataReader > > > Dim sql_DR As SqlDataReader > > > Dim OLE_Comm As OleDbCommand > > > Dim sql_Comm As SqlCommand > > > Dim OLE_DS As DataSet > > > Dim sql_DS As DataSet > > > > > > Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As > > > System.EventArgs) Handles btnSubmit.Click > > > Dim RecCount As Integer > > > OLEConn = New OleDbConnection("Provider=SQLOLEDB.1;Password=;Persist > > > Security Info=True;User ID=sa;Initial Catalog=AutoQplex;Data > > > Source=localhost") > > > OLE_Comm = New OleDbCommand("select count(flight_idx) from mflight > > > where flightno='" & > > > ddlFlightNo.Items.Item(ddlFlightNo.SelectedIndex).Text & "' and route > > > ='" & ddlRoute.Items.Item(ddlRoute.SelectedIndex).Text & "'", OLEConn) > > > OLEConn.Open() > > > OLE_DA = New OleDbDataAdapter("select count(flight_idx) from mflight > > > where flightno='" & > > > ddlFlightNo.Items.Item(ddlFlightNo.SelectedIndex).Text & "' and route > > > ='" & ddlRoute.Items.Item(ddlRoute.SelectedIndex).Text & "'", OLEConn) > > > OLE_DA.Fill(OLE_DS, "mflightno") > > > > > > RecCount = OLE_DS.Tables("mflight").Rows.Count > > > If RecCount = 0 Then > > > msgBox("No Flight Number and Route", MsgBoxStyle.Information) > > > End If > > > End Sub > > > > > > but on OLE_DA.Fill(OLE_DS, "mflightno") error occured (Value cannot be > > > null) > > > > > > i have tried to run SQL string in sql server and it return 0 > > > (select count(flight_idx)....) > > > > > > can you tell me why this error occured and how to fix it ? > > > > > > thx > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > Dean Fiala > > Very Practical Software, Inc > > http://www.vpsw.com > > > > > > > > > > > Yahoo! Groups Links > > > > > > > -- Dean Fiala Very Practical Software, Inc http://www.vpsw.com ________________________________________________________________________ ________________________________________________________________________ Message: 5 Date: Tue, 29 Nov 2005 06:45:05 -0000 From: "Iman Naseri Karimi" <[EMAIL PROTECTED]> Subject: Active Users by Session hello dear friends, I want to create sample application with asp.net 1.x that working with session. this application has 2 pages. in the first page you must enter your name and click submit button. after it, you will redirect to second page. in the secong page i want to show the name of active users that its session state is active. please help me or send me a copy of this application. regards iman ________________________________________________________________________ ________________________________________________________________________ Message: 6 Date: Tue, 29 Nov 2005 09:24:35 -0500 From: Mike Appenzellar <[EMAIL PROTECTED]> Subject: Program/code like browserhawk but free? Does anyone know of a program/code that can get exteneded user settings such as session cookies, browser, etc like browserhawk but that is freeware/opensource? [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 7 Date: Tue, 29 Nov 2005 09:06:53 -0600 From: Stephen Russell <[EMAIL PROTECTED]> Subject: Deliver Cross Tab output to Users "Life would be so much easier it we didn't have end users" :) I have an ASP.NET app that delivers a cross tab report to our Accounting Department. CFO just demanded that all of HIS reports are to be delivered in Excel format. Current version of Crystal is out of the box .NET version. Data is via a SP on my SqlServer. I don't like the idea of just putting into a new spreadsheet the call for data. I can't trust them to ever refresh it. So how do you folks deal with this from your users? I have been informed that we don't want to just throw money at this, (purchase crystal) but we look for other alternatives. No I don't want to load Office on the server either. I just don't trust M$ enough yet. Stephen Russell DBA/Developer Transaction Graphics Inc. Office: 901.312.7621 Fax: 901.312.7655 [EMAIL PROTECTED] This message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged or confidential or otherwise legally prohibited from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately by e-mail and delete all copies of the message. This message has been scanned by Modus Gate Anti-Virus/Spam technology. ________________________________________________________________________ ________________________________________________________________________ Message: 8 Date: Tue, 29 Nov 2005 10:13:11 -0500 From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> Subject: RE: Deliver Cross Tab output to Users Stephen, I haven't don this yet so I may be WAY off base but if you guys are using office XP I think you can have Excel consume a web service you great that delivers the data and Excel is simply the "client" I am not sure how difficult formatting and formulas will be but this will allow you to reuse code if it works as I think it does. Worth looking into. Again this is something I think I remember reading about months ago in a magazine so I may be way off. Travis D. Falls | Consultant RAFT.Net IT | 860.547.4070 | [EMAIL PROTECTED] -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Behalf Of Stephen Russell Sent: Tuesday, November 29, 2005 10:07 AM To: [email protected] Subject: [AspNetAnyQuestionIsOk] Deliver Cross Tab output to Users "Life would be so much easier it we didn't have end users" :) I have an ASP.NET app that delivers a cross tab report to our Accounting Department. CFO just demanded that all of HIS reports are to be delivered in Excel format. Current version of Crystal is out of the box .NET version. Data is via a SP on my SqlServer. I don't like the idea of just putting into a new spreadsheet the call for data. I can't trust them to ever refresh it. So how do you folks deal with this from your users? I have been informed that we don't want to just throw money at this, (purchase crystal) but we look for other alternatives. No I don't want to load Office on the server either. I just don't trust M$ enough yet. Stephen Russell DBA/Developer Transaction Graphics Inc. Office: 901.312.7621 Fax: 901.312.7655 [EMAIL PROTECTED] This message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged or confidential or otherwise legally prohibited from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately by e-mail and delete all copies of the message. This message has been scanned by Modus Gate Anti-Virus/Spam technology. Yahoo! Groups Links ************************************************************************ * This communication, including attachments, is for the exclusive use of addressee and may contain proprietary, confidential and/or privileged information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail, delete this communication and destroy all copies. ************************************************************************ * ________________________________________________________________________ ________________________________________________________________________ Message: 9 Date: Tue, 29 Nov 2005 09:42:28 -0600 From: Stephen Russell <[EMAIL PROTECTED]> Subject: RE: Deliver Cross Tab output to Users Falls, Travis D (HTSC, CASD) wrote: > Stephen, > I haven't don this yet so I may be WAY off base but if you guys are > using office XP I think you can have Excel consume a web service you > great that delivers the data and Excel is simply the "client" I am > not sure how difficult formatting and formulas will be but this will > allow you to reuse code if it works as I think it does. Worth > looking into. Again this is something I think I remember reading > about months ago in a magazine so I may be way off. Thanks Travis, never thought of a WS, because I'm not crossing a firewall. # of rows in the pull of data is 1050 and won't add much for the Dec business. I know that our accounting all have OfficeXP and not 2003. That may be a thorn? I just feel vulnerable that a user WON'T refresh data, and this project is for our upcoming audit. So having a user need to do ANYTHING other then one click is considered questionable here. :) I tried Access, but you can't do a cross tab report in Access .APP, like you can in an Access database. Anyone know a workaround with that or for that? Stephen Russell DBA/Developer Transaction Graphics Inc. Office: 901.312.7621 Fax: 901.312.7655 [EMAIL PROTECTED] This message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged or confidential or otherwise legally prohibited from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately by e-mail and delete all copies of the message. This message has been scanned by Modus Gate Anti-Virus/Spam technology. ________________________________________________________________________ ________________________________________________________________________ Message: 10 Date: Tue, 29 Nov 2005 07:56:56 -0800 (PST) From: loc tran <[EMAIL PROTECTED]> Subject: Re: asp.net question okay...here goes. i'm trying to implement a website for my buddy (www.businessjet.com). what he's trying to do is create a portal for business jets (marketplace). i've created an access (relational) database to store information about these planes (images, seller info, plane specs, etc.). i wanna use asp.net to create a "drilldown" search/navigation piece for the planes. if you look at the website, the beech/raytheon -> beechjet 400A plane example will demonstrate what i wanna do. at the moment, this is done using static pages (yes, very 1st generation website...sorry, i'm a newbie). could you direct me to a good source or example of how i could do this using asp.net? any and all advice from a programmer of your caliber (yes, i'm patronizing, but it's sincere patronizing!) would be immensely appreciated! thanks, loc Charles Carroll <[EMAIL PROTECTED]> wrote: I have been answering questions for newbies since 1996 -- I am not likely to stop anytime soon. Ask away. On 11/28/05, loc tran <[EMAIL PROTECTED]> wrote: > Mr. Carroll...can a "newbie" asp.net programmer ask you a question? SPONSORED LINKS Basic programming language Computer programming languages Programming languages Java programming language --------------------------------- YAHOO! GROUPS LINKS Visit your group "AspNetAnyQuestionIsOk" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- --------------------------------- Yahoo! Music Unlimited - Access over 1 million songs. Try it free. [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 11 Date: Tue, 29 Nov 2005 11:07:07 -0500 From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> Subject: RE: asp.net question basically at a high level you need to have a datasource that stores the information in a manner that you can query it based on variables passed in. The links would that you are clicking on would have data associated with them that you would collect in the given page, run the query statement and display the data. for example, if you use SQL Server, one link maybe /planedetails.aspx?planeTypeID=123&planeLocationID=321 you would then be able to get these querystring properties in the planedetails.aspx page in a code behind perferablly and either pass them into a stored procedure or dynamically generate SQL: Select sometablefield1, sometablefield2, sometablefield3, from planeDetails Where planeTypeID='123' AND planeLocationID='321' you would then get the data from the data source and display it. you should check out some beginner sample apps or tutorials at www.asp.net that might help more. :-) HTH Travis D. Falls | Consultant RAFT.Net IT | 860.547.4070 | [EMAIL PROTECTED] -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Behalf Of loc tran Sent: Tuesday, November 29, 2005 10:57 AM To: [email protected] Subject: Re: [AspNetAnyQuestionIsOk] asp.net question okay...here goes. i'm trying to implement a website for my buddy (www.businessjet.com). what he's trying to do is create a portal for business jets (marketplace). i've created an access (relational) database to store information about these planes (images, seller info, plane specs, etc.). i wanna use asp.net to create a "drilldown" search/navigation piece for the planes. if you look at the website, the beech/raytheon -> beechjet 400A plane example will demonstrate what i wanna do. at the moment, this is done using static pages (yes, very 1st generation website...sorry, i'm a newbie). could you direct me to a good source or example of how i could do this using asp.net? any and all advice from a programmer of your caliber (yes, i'm patronizing, but it's sincere patronizing!) would be immensely appreciated! thanks, loc Charles Carroll <[EMAIL PROTECTED]> wrote: I have been answering questions for newbies since 1996 -- I am not likely to stop anytime soon. Ask away. On 11/28/05, loc tran <[EMAIL PROTECTED]> wrote: > Mr. Carroll...can a "newbie" asp.net programmer ask you a question? SPONSORED LINKS Basic programming language Computer programming languages Programming languages Java programming language --------------------------------- YAHOO! GROUPS LINKS Visit your group "AspNetAnyQuestionIsOk" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- --------------------------------- Yahoo! Music Unlimited - Access over 1 million songs. Try it free. [Non-text portions of this message have been removed] Yahoo! Groups Links ************************************************************************ * This communication, including attachments, is for the exclusive use of addressee and may contain proprietary, confidential and/or privileged information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail, delete this communication and destroy all copies. ************************************************************************ * ________________________________________________________________________ ________________________________________________________________________ Message: 12 Date: Tue, 29 Nov 2005 12:04:27 -0500 From: Mike Appenzellar <[EMAIL PROTECTED]> Subject: Multiple Buy Now buttons within the same datalist Not sure if this will make since, but I have a datalist displaying multiple columns. Each product has its own buy now button. My question is being this is all in one form, how can I get it to know that I clicked on buy now button #1 vs but now button #4...In coldfusion I would just use a hidden form field...woudl this work similar here? ex: prod1 prod2 BUY NOW BOW NOW prod3 prod4 BUY NOW BUY NOW [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 13 Date: Tue, 29 Nov 2005 12:27:23 -0500 From: "Falls, Travis D (HTSC, CASD)" <[EMAIL PROTECTED]> Subject: RE: Multiple Buy Now buttons within the same datalist you can specify the Command Argument item per button and check with a switch case in the receiving OnCommand function. Travis D. Falls | Consultant RAFT.Net IT | 860.547.4070 | [EMAIL PROTECTED] -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Behalf Of Mike Appenzellar Sent: Tuesday, November 29, 2005 12:04 PM To: [email protected] Subject: [AspNetAnyQuestionIsOk] Multiple Buy Now buttons within the same datalist Not sure if this will make since, but I have a datalist displaying multiple columns. Each product has its own buy now button. My question is being this is all in one form, how can I get it to know that I clicked on buy now button #1 vs but now button #4...In coldfusion I would just use a hidden form field...woudl this work similar here? ex: prod1 prod2 BUY NOW BOW NOW prod3 prod4 BUY NOW BUY NOW [Non-text portions of this message have been removed] Yahoo! Groups Links ************************************************************************ * This communication, including attachments, is for the exclusive use of addressee and may contain proprietary, confidential and/or privileged information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail, delete this communication and destroy all copies. ************************************************************************ * ________________________________________________________________________ ________________________________________________________________________ Message: 14 Date: Tue, 29 Nov 2005 11:14:52 -0800 From: Charles Carroll <[EMAIL PROTECTED]> Subject: Re: Program/code like browserhawk but free? why? To avoid licensing fees? Because Browserhawk has flaws you cannot improve? I don't know of one -- maybe others do but I happen to suspect the quality of Browserhawk is high (the author is OCD abut improving it) and OS projects are unlikely to be as high (I say unlikely mostly because the OS ones could even be better if they exist quality is not an OS/commercial issue but BH has a praticularly innovative/obsessive author) but given the cost of someones time to incorporate an OS product if it has cognitive friction may exceed in hours the Browsherhawk licensing scheme. SourceForge.net is a good place to look and others may know of a OS browserhawk alternatvie. I am just curious if a capitalist solves a problem well why another capitalist begrudges them a modest fee -- unless the fees is no longer modest. I have not looked at their pricing in a while so curiosu why you prefer an OS one. Is it about source modification or price? or something else? On 11/29/05, Mike Appenzellar <[EMAIL PROTECTED]> wrote: > Does anyone know of a program/code that can get exteneded user settings > such > as session cookies, browser, etc like browserhawk but that is > freeware/opensource? ________________________________________________________________________ ________________________________________________________________________ ------------------------------------------------------------------------ Yahoo! Groups Links ------------------------------------------------------------------------ **************** CAUTION - Disclaimer ***************** This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Further, you are not to copy, disclose, or distribute this e-mail or its contents to any other person and any such actions are unlawful. This e-mail may contain viruses. Infosys has taken every reasonable precaution to minimize this risk, but is not liable for any damage you may sustain as a result of any virus in this e-mail. You should carry out your own virus checks before opening the e-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system. ***INFOSYS******** End of Disclaimer ********INFOSYS*** ------------------------ Yahoo! Groups Sponsor --------------------~--> 1.2 million kids a year are victims of human trafficking. Stop slavery. http://us.click.yahoo.com/.QUssC/izNLAA/TtwFAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
