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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
|