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 > march 2008 > threads for thursday march 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 31

Is using UserId guid outside of aspnetdb acceptable?
Posted by Bogdan at 3/13/2008 11:49:09 PM
Hi, I'd like to take a full advantage of built-in membership services and use aspnetdb's UserId in my app's database. For example, I'd like to establish some relationships between membership users from aspnetdb and rows in tables in my database. My app would be responsible for enforcing t...more >>


catch{} butterfingers {}
Posted by Peter Morris at 3/13/2008 5:48:24 PM
Hi all, I have a perplexing problem.... protected void ArticleFormView_ItemUpdating(object sender, FormViewUpdateEventArgs e) { try { //Next line is line 36 if (!ArticleDataSource.IsValidNewValues(e.Keys, e.NewValues)) e.Cancel = true; } catch (FormatException) { e.Cance...more >>

MutuallyExclusiveCheckBoxExtender + CheckBoxList - AJAX
Posted by Tamer Ibrahim at 3/13/2008 5:35:21 PM
Hi, This is the error message I got when I'm trying to extend a'CheckBoxList1' with 'MutuallyExclusiveCheckBoxExtender1' which I understand it is not possible. Extender control 'MutuallyExclusiveCheckBoxExtender1' cannot extend 'CheckBoxList1'. Extender controls of type 'AjaxControlToolkit....more >>

q; Search engine; Dynamic pages
Posted by JIM.H. at 3/13/2008 4:09:02 PM
Search engine; Dynamic pages I was reading a few articles that search engines do not support dynamic pages, is there any reference that talks about how we can overcome this issue? ...more >>

Passwordrecovery control && requiredFieldValidator
Posted by Jeff at 3/13/2008 2:53:14 PM
hey asp.net 3.5 I have this asp.net markup. it displays a PasswordRecovery control on a webpage. In the markup I've set UserName as a reguired field. The problem is that when I don't enter something in the UserName field and click Submit, nothing happens.. it doesn't even display an err...more >>

Crystal and DataSet
Posted by Paulo at 3/13/2008 2:52:10 PM
Hi, MySqlDataReader reader = null; MySqlCommand cmd = new MySqlCommand("Select from something", conn); reader = cmd.ExecuteReader(); How can I put: report.SetDataSource(ds); the Reader instead DataSert ? Is possible converting Reader to DS ? VS 2005 - asp.net C# 2.0 Thanks! ...more >>

QueryString Not Accesible from the Server (Please Respond)
Posted by pbd22 at 3/13/2008 12:13:30 PM
Hi. I have HTML on my form that was constructed on the server. The "browser" is a PopUp that was previously fired from another page. This popup is a standard browser pop-up, nothing fancy or unique. There are two forms inside the pop-up: They both have javascript buttons on them that sub...more >>

Linq and sql
Posted by Ilyas at 3/13/2008 11:24:38 AM
Hi all I have the following xml file : <?xml version="1.0" encoding="utf-8" ?> <root> <persons> <person> <firstname>Mark</firstname> <surname>Jones</surname> <age>33</age> </person> <person> <firstname>Adbul</firstname> <surname>Khan</surname> <age>30</age> ...more >>



Properly using directorysearcher to find a user in an AD Group
Posted by Jim in Arizona at 3/13/2008 10:57:29 AM
I'm trying to do a check to see if a specific active directory user account exists in active directory AND a specific group. I can't seem to get the filter down right. I can do this to find a matching name in active directory: ================================================ Dim oroot As ...more >>

Handle Double-click on <Input type="image">
Posted by Will at 3/13/2008 9:09:02 AM
I have an image "button" which causes a postback. I handle the "click" with If Request.Form("btnBU7WD6_Submit.X") > 0 Then... this works great. However, when a user double-clicks the image button the Page_Load (postback) is processed twice. This is a problem. Is there any easy way to...more >>

IE WebControls does not render proper XML and TSNS code
Posted by ist at 3/13/2008 9:08:22 AM
Hi, I have a Web Application that uses IE Web Controls for main navigation. However, the application fails to run on some servers because of IE Web Controls are not truely rendered. When I analysed the problem, I have seen that, failing servers somehow fail to create correct HTML output for IEW...more >>

No resources were found in the manifest.
Posted by JB at 3/13/2008 8:52:24 AM
I'm working on an asp site and i am getting the following error:# "No resources were found in the manifest. Did you mark your content to be compiled as resource?" "PresntLocations=" then a list of all my XML files What I tried to do was add a bunch of XML files with some required data. I'...more >>

Changing the password setting
Posted by King Coffee at 3/13/2008 8:19:43 AM
Hi, I'm using the wizard login control in ASP.NET 2.0. The default password is 7 characters minimum and an minimum 1 non-alphanumeric character. Why can I change these setting? King ...more >>

Redirection script
Posted by Gee at 3/13/2008 7:26:17 AM
I have a form which I need to redirect to a file (could be PDF or Word) which is on the clients local system but I am having touble getting it to fire the javascript. In the PageLoad if not a postback I do string oFileScript = "<script language='javascript'>" + "window.location='file://...more >>

delete from repater / ajax / asp.net 3.5
Posted by laziers@gmail.com at 3/13/2008 6:54:40 AM
Hi, Im using in asp.net 3.5 and ajax. So, I want to do something like this: I have repeater [in update panel] with some data and button witch deletes selected record. Im clicking at the delete button, and then page is refreshing/ reloading. So, before delete asp must get data from database...more >>

Ajax invoke WebMethod with *out* Params
Posted by ckkwan@my-deja.com at 3/13/2008 5:14:35 AM
[WebMethod] public void Test(string Str) for the WebMethod above, I am able to invoke using Ajax by: WebService.asmx/Test?Str='something' But in the case below: [WebMethod] public void Test(string Str, out string OutStr) I tried to invoke using the similar string: WebService.asmx...more >>


DevelopmentNow Blog