all groups > asp.net > november 2007 > threads for sunday november 25
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
SqlException: "Generating user instances in SQL Server is disabled"
Posted by R.A.M. at 11/25/2007 10:12:24 PM
Hello,
I have started programming ASP.NET application using SQL Server 2005 Express
Edition. The problem is that when C# code tries to access aspnetdb database,
for example:
System.Security.Principal.IPrincipal user = HttpContext.Current.User;
if (user.IsInRole("Kierownik")) // HERE PROB... more >>
Get value from an image button in a row in GridView
Posted by glbdev@gmail.com at 11/25/2007 10:02:09 PM
Hi.
I have a gridview in which each row has an image button attached. I
have each button in each row set up to be associated with a DB field.
When I hover above the button it shows me the correct value of the DB
field in a tooltip, so there is no problem there. But ...how do I
access that v... more >>
AutoComplete not filtering with Ajax
Posted by MarkusJ_NZ at 11/25/2007 9:14:13 PM
Hi, I have a text box which I have associated with an
AutoCompleteExtender.
e.g.
<cc1:AutoCompleteExtender
runat="server"
ID="autoComplete1"
TargetControlID="TextBox1"
ServiceMethod="GetCompletionList"
MinimumPrefixLength="2"
CompletionInterval="1000"
E... more >>
.NET Frameworks question
Posted by Kevin at 11/25/2007 7:30:57 PM
I am using the following to try and help me get the answer to my
question. Can anyone help?
http://expertcodeadvice.com/index.php?topic=5.0
Thanks,
Kbad... more >>
Why? //<![CDATA[
Posted by shapper at 11/25/2007 4:49:17 PM
Hello,
Why when I register some Javascript code to the page I get //<!
[CDATA[ before it?
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
This is the first script
This is the second script
});
//]]>
</script>
If I write the script myself in the HTML code or... more >>
Referring to public variables in asp.net vb
Posted by OK at 11/25/2007 4:22:11 PM
How can I access public variables of an aspx.vb page within the code of
another aspx.vb?
Imagine the following :
Test.aspx.vb holds a public variable Mode 1:
Public Mode1 as boolean
How can I Refer to the variable Mode1 within the vb code in another aspx.vb?
... more >>
using global.asax.vb for defining global parameters
Posted by OK at 11/25/2007 3:58:22 PM
I use Global.asx.vb for declaration of my global paramaters such as the
Employee number of an Employee who logged into the website. I found this as
the only way to handle these parameters in another aspx pages. Anyting works
good up to now.
In case another employee logs into the website who... more >>
How to display original size of picture within image control?
Posted by OK at 11/25/2007 3:29:09 PM
I've added an Image control to a page within VS2005.
In case the image is too large for the image control size it sqeezes the
picture in order to show the whole picture.
How can I have the picture not be sqeezed at all?
regards,
Oscar
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problem Install Ajax Control Toolkit 3.5
Posted by kai at 11/25/2007 2:20:53 PM
Hi,
I installed VS 2008 Professional Final version. I followed Joe Stagner
video try to install Ajax Control Toolkit 3.5 into Toolbox, then I get an
error message:
"The following assemblies are installed SDK asssemblies, but could not be
shown in customize toolbox dialog because they a... more >>
What Does this Mean?
Posted by Jonathan Wood at 11/25/2007 2:02:22 PM
I found the following class on the Web:
public class LoginRewriter : IHttpModule {
void IHttpModule.Dispose() { }
void IHttpModule.Init(HttpApplication app) {
app.AuthorizeRequest += new EventHandler(authorizeRequest);
}
.
.
.
}
Can someone tell me what... more >>
GridView - two clicks needed to enter in-place editing
Posted by Hrvoje Vrbanc at 11/25/2007 11:48:52 AM
Hello all,
I've encountered a very strange problem: I have a GridView control on an
..aspx page that displays data correctly (in any case; with autogenerated
columns or with using item templates).
I added "Edit, Update, Cancel" command button to the GridView but when I
click on "Edit" no... more >>
In ASP.NET can I cache a <body>'s background image?
Posted by Mike at 11/25/2007 6:57:01 AM
Hi. I'm building an ASP.NET 2.0 web-app for a customer. The customer wants
a background image that's 124k in size as the background for each page. I've
recommended they use a smaller-size image, but the customer is absolutely
adamant about using the image.
I'm afraid that this large imag... more >>
Cache Authentication vs Forms Authentication - Thoughts?
Posted by Rbrt at 11/25/2007 6:43:00 AM
I am developing a IIS 6.0 / ASP.NET 2.0 database driven web site that will be
used for an in-house application with less than 1,000 potential users and
which will probably never have more than a couple of hundred simultaneous
users at any given time.
While forms authentication provides good... more >>
Image caching question
Posted by Sems at 11/25/2007 12:53:59 AM
Hi
I have a masterpage that has an image in it. Whats the best way to
cach the image to stop it from being reloaded each time a new page is
displayed?
Will the masterpage take care of this for me or do I have to manage
it? If so how would you suggest?
My site is written using .Net 2.0 an... more >>
|