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 > december 2003 > threads for wednesday december 31

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

GetBoldWords()
Posted by kuya789 NO[at]SPAM yahoo.com at 12/31/2003 11:26:05 PM
I need a function in c# that finds and outputs word in bold. string input = "<b>Hello my name</b> is John" public string GetBoldWords() { //the function return s // s = "Hello my name" } thanks...more >>


Repeater class
Posted by Calvin Lai at 12/31/2003 11:15:52 PM
Hi all, I have a repeater control trying to display some info including date information to the client. I used the following: <%# DataBinder.Eval(Container.DataItem, "Date", "DataTime.Parse({0}, oCulture)") %> but it doesn't work as intended. (The oCulture is a culture info object).I also tr...more >>

Meta Info and Response.Write
Posted by joshua NO[at]SPAM joshuaz.com at 12/31/2003 10:39:17 PM
Hey All, I'm using response.write to create a dymantic webpage. Basically just write the HTML out with response.write. The problem I am having is that when I do this it puts the Meta tag info for the webpage at the bottom of the page because the meta info was added with the form designer. ...more >>

Free aspnet hosting?
Posted by Iceman at 12/31/2003 10:13:46 PM
Hi, Does someone know where I can find free/good aspnet webhosting companys? Best regards -Iceman ...more >>

Encoding problem
Posted by Calvin Lai at 12/31/2003 9:28:18 PM
If my data in SQL server was stored from a web application with requestEncoding set as iso8859-1. And now I want to change the data encoding to big5, (or anything else), how could I do that? Thanks for all advice and input. Calvin ...more >>

Image download
Posted by Buz Waitz at 12/31/2003 5:01:09 PM
For some reason, even though all of my jpgs and gifs download to IE with the html on the stand alone server, and on computers within our peer-to-peer lan; they do not all download to clients over the internet. I've check and my scr specifications are identical. On the server, all the images are ...more >>

Session State - What does it take to establish one single ASP.NET session per "browser session"
Posted by Jeff Smythe at 12/31/2003 4:53:23 PM
I simply want to execute some code once when a new session of my ASP.NET application is started (I'm not using session state for anything else - just writing some data to a database). I thought that I could simply put the code in the Session_Start event procedure in Global.asax.cs, however, the e...more >>

msde premission
Posted by Hei at 12/31/2003 4:13:12 PM
Hi i'm try a asp.net web page that access msde, i think these problem is about premission. i have 1. added a login to msde named 'Database Users' and 2. grant windows user group 'Database Users' to that login, also 3. add 'ASPNET' to windows user group 'Database Users'. but still not wo...more >>



HttpPostedFile problem
Posted by huan at 12/31/2003 3:46:48 PM
Hi, I am creating a function using C# to send emails with attachment file. And I am using File Field control to get file for attachment. Sending email works fine on development machine, however when I deployed it on the production machine, it doesn't work. It gives me an error as below ...more >>

Button control _Click event not firing
Posted by Max at 12/31/2003 3:38:51 PM
For some reason my button control just stopped working. In debug mode I found the _Click event is just not firing. When I click submit, the page just refreshes. Any idea what's going on? -Max ...more >>

Could not load type 'Global.yaddayadda'. - Global.asax.cs
Posted by Daniel Bass at 12/31/2003 3:14:06 PM
Scenario (Hardware) ---------------------- I've got an engineering source server with Win 2k on it. We use it for all the source files for our projects etc... Let's call it "Engineering" for this scenario's sake. Next, I have a test machine, again running Win 2k, we'll call it "Test", that...more >>

ultrawebgrid binding to existing columns
Posted by lifeandart2004 NO[at]SPAM yahoo.com at 12/31/2003 3:12:26 PM
I've been playing with the infragistics ultrawebgrid and I'm trying to do something that seems like it should be a piece of cake. I want to setup the columns, select a datasource and bind it programmatically. The way the example shows how to do it, is by looping through the data. Which is ...more >>

Crystal Reports Export Problem
Posted by Grant Szabo at 12/31/2003 2:54:01 PM
I need to export a report with stored procedure parameters from ASP.NET. I cannot find any way to set the parameters from the ReportDocument object. I'm using C# on ASP.NET with Crystal v9 and SQL Server 2000. Reports without parameters export perfectly. Can anyone throw me a bone on how ...more >>

sending webpage by mail
Posted by ram at 12/31/2003 2:25:48 PM
i have an webpage which i send to all the users manually but i need to automate the procedure so that they can receive webpage by email everyday, anyideas-- Guys?...more >>

runs in debug but not in production
Posted by Scott at 12/31/2003 2:24:40 PM
I have a simple asp.net app which works fine in debug mode, but crashes on the following line when I run it on the production server: Dim dt As DataTable I have tried the following variations which produce the same result: Dim dt As System.Data.DataTable Dim dt As DataTable = Ne...more >>

Treeview and Database Question
Posted by john_20_28_2000 NO[at]SPAM yahoo.com at 12/31/2003 1:51:09 PM
I just wanted to get a good link showing the usage of asp.net and the TreeView control used with a database instead of just an xml file. Any help is appreciated....more >>

IsPostBack value incorrect using Server.Transfer in Front Controller plus Visual Inheritance
Posted by Mr Wizard at 12/31/2003 1:41:15 PM
I am going through the front controller http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpatterns/html/ImpFrontControllerInASP.asp and all works well except when the server.transfer occurs. I get invalid IsPostBack results which I believe can fixed using the patch in KB:821156. Ho...more >>

aspx files not running on my localhost server
Posted by M Luper at 12/31/2003 1:17:40 PM
I have visualStudio.NET on my laptop. The OS on the laptop is XP Proffesional. When I installed visualStudio.NET on my laptop I thought that all of the dotnet framework was installed, but when I try to run aspx files from my local host the page will load but it wont recognize the elements of ...more >>

How to import contacts from outlook to my web app
Posted by RamonOlguin at 12/31/2003 12:40:57 PM
How to import contacts from outlook to my web app If someone has made something like this, please help me out !! ...more >>

Q. About Debugging ASP.NET web application
Posted by Ather Ali Shaikh at 12/31/2003 12:11:23 PM
Hello All I have a domain account to login to the domain and have also memeber of the Adminstrator group on the local computer. How I can make the same account to become a Debugger User group member too. I am unable to debug my ASP.NET application on the computer. My application is on my own ...more >>

capturing username
Posted by Brent Burkart at 12/31/2003 11:54:33 AM
I am trying to capture the Windows Authenticated username, but I want to be able to capture the login name that exists in IIS, not Windows. In order to enter my company's intranet through the internet, they have to login. I want to be able to capture that login versus their Windows login because ...more >>

how - specify length in eval?
Posted by David Bartosik - MS MVP at 12/31/2003 11:27:34 AM
If I have... <TD><%# DataBinder.Eval(Container.DataItem, "Print_name") %></TD> and I want to display only the first 12 characters of the "Print_name" data field, how is that done? -- David Bartosik - Microsoft MVP www.davidbartosik.com www.barvin.com ...more >>

IIS File Extension Mappings
Posted by Bruce B at 12/31/2003 11:21:04 AM
Does anyone know if there is a limit in IIS as to how many file types can be mapped? I'm encountering unstability in IIS/Visual Studio when I approach 75-80 total mappings, which includes those supporting .NET. I've scoured the MS documentation in MSDN and can't find any such limit. Also, do...more >>

adding attributes
Posted by Mark at 12/31/2003 11:19:40 AM
Hello all. Why doesnt this work e.Cell.Attributes.Add("onmouseover", "this.style.foreColor='Red'") but this does e.Cell.Attributes.Add("onmouseover", "this.style.backgroundColor='Red'") Please Help Mark ...more >>

HTTPHandler / HTTPModule problems
Posted by Bruce B at 12/31/2003 11:16:58 AM
Has anyone else experienced unreliability with HTTPHandler and HTTPModles they've written? What seems to work fine at one time, just seems to stop working at others? Any ideas if this is a debugger issue or an IIS issue related to the file extension mappings? Bruce B ...more >>

Drag and Drop on Web Forms
Posted by Dave at 12/31/2003 11:08:10 AM
Has anyone tried to use the DHTML dataTransfer Object with web forms controls? Seen any examples? Thanks......more >>

Datagrid Paging not working
Posted by Coleen at 12/31/2003 10:58:53 AM
Sorry about the multi-posting, but it does not seem as though the other newsgroups are frequented enough to get any advice on this problem...If anyone can possibly help, I would greatly appreciate it, I've spent three days trying figure out why paging won't work for me...TIA. I've been to gotd...more >>

No one knows how to dynamically add columns?
Posted by John Ruiz at 12/31/2003 10:24:28 AM
Greetings, I originally posted this to microsoft.public.dotnet.framework.aspnet.datagridcontrol two weeks ago, but no one was able to answer. I am unable to dynamically add columns to a DataGrid in a web user control (.ascx) I am creating. This applies to VS.NET 2003 / Framework 1.1. ...more >>

Adding Controls Dynamically
Posted by ALPO at 12/31/2003 10:17:36 AM
Is it possible to add/change controls of item in the datagrid? For instance when the ItemCreated event fires for the last item (not footer or header), add a dropdownlst that I can bind to a dataset....more >>

Can't access application object from inside class files
Posted by trebor NO[at]SPAM sirius.com.no.more at 12/31/2003 10:12:09 AM
I added a couple of class files to a VS web project, and I can't access the application object from inside them. The system treats them like undeclared variables. Is there an Imports I have to use? The value that I need global to the entire project is the oleDB connection string ("Provider=......more >>

asp:table cannot use in design view?
Posted by Max at 12/31/2003 10:10:22 AM
I'd like to use asp:table, instead of HTML tables, but in VS.NET it appears I cannot do anything with the contents of a table in design view. I tried to bring it into Dreamweaver, but same result. Should I go back to using regular HTML tables or is there a better way? The problem is VS.NET doe...more >>

<A href= links dont always render properly on my .aspx pages
Posted by Brian Watkins at 12/31/2003 10:05:53 AM
Hello All, I have a a file display page that contains two frames. In the left frame is a tree view that lists a directory and all its subfolders. Each node in the left frames tree is a link that when clicked displays links to all the files in the right frame for the folder clicked. Th...more >>

Changing a table properties in ASP.NET
Posted by Chris at 12/31/2003 9:57:25 AM
This should have been easy but I can't find the answer... I want to make every other row in my table a different row. I can't seem to find a way to do this through my Page_Load event like I thought I would because I can't grab the table object. The table has an ID so I don't see why I can't ...more >>

DataSet into XmlReader
Posted by George Durzi at 12/31/2003 9:34:36 AM
Folks, I'd like to write out a DataSet's Xml into an XmlReader? How do I do that? Thanks! ...more >>

Parser Error Message: Ambiguous match found.
Posted by Denon at 12/31/2003 9:31:08 AM
Hi, everybody I have a web control, build by VB.net, and if I put two instance on the same aspx, error occur while debugging. Parser Error Message: Ambiguous match found. It highlight the second instance web control in aspx This is my web control is declared at aspx like this <cc1:Co...more >>

web.config fires application_start
Posted by barak at 12/31/2003 9:11:29 AM
Hi. I noticed that when I change the timeout of the session in web.config, the event application_start in global.asax is raise, although I make no compilation. is it normal? is there a way to change the session timeout without firing the application_start event> thanks Barak...more >>

Server Error in '/' Application. -> web.config
Posted by thomas.hauser NO[at]SPAM hannover-leasing.de at 12/31/2003 8:21:18 AM
hello everbody, i write a little asp-application with forms-authentication. i copy my aspx-files with web.config to my webspace and i get the error above... i tried to set the custom-errors-tag ="off" but nothing happens.... what is my failure???? could someone help me please? than...more >>

this seems too simple, to be accurate
Posted by Jim Butler at 12/31/2003 8:06:42 AM
What are the drawbacks if any to this approach of not using the gac for shared components... basically having a central directory located outside of iis, that all web applications have a virtual dir named bin pointing to this dir. like below setup, all on each server in a farm web site ...more >>

C# - get value of a column in a DataRow
Posted by chet_111 NO[at]SPAM yahoo.com at 12/31/2003 6:58:07 AM
I have a DataRow from a table in a data set. One of the columns has a name of "COMPANY_TICKET_ID" and I'm trying to get this column's value with the following: foreach( DataRow[] row in ds.Tables[ 0 ].Rows ) Console.WriteLine( row[ "COMPANY_TICKET_ID" ].ToString() ); I get an error - cann...more >>

Failed to execute request because the App-Domain could not be created. Error: 0x80004003 Invalid pointer
Posted by jwpostit NO[at]SPAM yahoo.com at 12/31/2003 6:15:40 AM
I uninstalled/reinstalled .NET 2003 with no errors. When I try to create a Visual C# ASP.NET Web Application I get the error: "The Web server reported the following error when attempting to create or open the Web project located at the following URL: 'http://localhost/MyWebTest'. 'HTTP/1.1 500...more >>

File Handling in ASP.Net / VB.Net
Posted by C at 12/31/2003 5:21:07 AM
Hi, I have a web app whereby I extract some data from an Excel Sheet. Once I have extracted my data I close my Excel Object. I then try to delete the file. When I try to delete the file it tells me that it is locked by the IUSR account. Anyone know why this is? Thanks, ...more >>

Redirect and Target="_blank"
Posted by msnews.microsoft.com at 12/31/2003 5:14:38 AM
I want to redirect the user to a url outside of our website but I want it to preserve our application's window by opening a new window. We have a datagrid that has five hyperlink columns containing links to external sites. The hyperlink columns have the target="_blank" attribute so they preserve ...more >>

highlighting arow--urgent
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 12/31/2003 3:54:31 AM
how to highlight a row of my datagrid (web) . i dont want to use select button. upon clicking on the row , it shouls be highlighted and cursor shouls remain in the same row. how to acheive it? plz help me out...more >>

Passing Objects between Pages
Posted by gamesays NO[at]SPAM yahoo-dot-com.no-spam.invalid at 12/31/2003 1:13:06 AM
hi all, In a Web Application i want to add details in a class's object and pass the object from one page to another page and then retrieve the details from the object in the latter page.how can i do this. VijayAnand. ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure U...more >>


DevelopmentNow Blog