|
Does anyone have any suggestions? I wonder if it has anything to do with the updatepanel. I have seen that causes a few of my other project's functionality.
|
|
|
|
|
I'm just starting to get into database markup language (dbml) files in my projects but I'm curious as to if dbml is always the right approach...
So far, I'm really liking the dbml approach. Before using this, I usually called some classes within my data access layer which in turn called a stored procedure. The dbml file on the other hand, makes the process much cleaner.
My concern however, is what happens when I have a database with large amounts of data? For example, I currently have a news articles website. We currently have about 40,000 articles...and that number's rapidly rising. If I were to pull these articles via a dbml file, wouldn't the user (or more specifically, the web server carrying the user's info) have to carry around all that data? Every article's title, content, author, date created, etc? If we were to have 100 users on the site at the same time, wouldn't that really slow down the server (100 users x 40,000 article objects)?
Or am I not understanding how dbml files work?
Are there right & wrong times when to use & when not to use dbml files?
Thanks.
|
|
|
|
|
Goalie35 wrote: Are there right & wrong times when to use & when not to use dbml files?
What does it has to do with ASP.Net?
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
It is regarding my latest article, you have edited it, and made some important mistakes there... I have taken the HTML of your colored version and fixed it with the original meaning. Please contact me so I can send it to you, as there's no modify option for some reason, and there's no PM also so I can't contact you!
Thanks
Daniel
-----
Daniel Cohen Gindi
danielgindi (at) gmail dot com
|
|
|
|
|
why didn't you replied him at in your article itself.I dont think it'll help you if you post it in ASP.NET forum
Cheers!!
Brij
|
|
|
|
|
Yes I tried, here and in the article, and also replied to the email I received after my article was uploaded. But no response from her...
-----
Daniel Cohen Gindi
danielgindi (at) gmail dot com
|
|
|
|
|
Then don't waste our time
I know the language. I've read a book. - _Madmatt
|
|
|
|
|
Oh poor thing
-----
Daniel Cohen Gindi
danielgindi (at) gmail dot com
|
|
|
|
|
I have never posted an article on codeproject, but I can feel the pain you are having. The fact that there is no modify option is quite annoying. The author should be able to modify his/her article!!!
I think you should report this as a bug to codeproject.
By the way, I like all your articles. I've been using your stuff ever since I found them. Thanks!
|
|
|
|
|
Thanks man!
You might want to check my latest article on ResolveUrl. (And if you are actually reading the introduction, replace the words "if" by "unless" in your head, because Smitha has replaced all of my "unless"es into "if"s...
-----
Daniel Cohen Gindi
danielgindi (at) gmail dot com
|
|
|
|
|
i have deployed my web application in my company's subdomain but it's showing ----
Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
can any one help me out i am a fresher, have just joined my new job.
|
|
|
|
|
There!
It took me one second, Google is your friend 
|
|
|
|
|
Super reply Estys 
|
|
|
|
|
It's not the forum to flame (READ THE GUIDELINES), but really, he has a job???
|
|
|
|
|
I'm sorry i'm new here 
|
|
|
|
|
You misunderstood.
I make a (a bit of a) flaming remark about his job-status.
Liked your reply, now I'm Super Estys! 
|
|
|
|
|
when building my website in visual studio 08 , (asp.net), when i debug my internet explorer 8 does not load my images, how do i enable them to load?
|
|
|
|
|
I didn't get your point. Can you please let us know in details ?
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
Be bit more clear and precise
Cheers!!
Brij
|
|
|
|
|
 >Running Visual Studio 2008
>Building a website in asp.net
when i debug (to test & see how the website looks) it opens my internet explorer 8 , only thing wrong is all my images on on the internet explorer do not load
>i see everything workin except my images dont load
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>..::my first webpage::.</title>
<style type="text/css">
.style1
{
width: 59px;
}
.style3
{
width: 163px;
}
.style4
{
width: 59px;
height: 161px;
}
.style5
{
width: 163px;
height: 161px;
}
.style6
{
height: 161px;
}
.style7
{
width: 178px;
height: 94px;
}
</style>
<script language="vbscript" type="text/vbscript">
</script>
</head>
<body bgcolor="#006666">
<form id="form1" runat="server">
<div>
</div>
<table style="width:100%;">
<tr>
<td class="style4">
</td>
<td class="style5">
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
</td>
<td class="style6">
<img alt="" class="style7" src=""
style="background-image: url('App_Data/images.jpg')" /></td>
</tr>
<tr>
<td class="style1">
<input id="btnClient" type="button" value="Client" style="height: 26px" onclick="return btnClient_onclick()" /></td>
<td class="style3">
<asp:Label ID="Label1" runat="server" Text="Client"></asp:Label>
</td>
<td>
</td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style3">
</td>
<td>
</td>
</tr>
<tr>
<td class="style1">
<asp:Button ID="btnServer" runat="server" style="height: 26px" Text="Server" />
</td>
<td class="style3">
<asp:Label ID="Label2" runat="server" Text="Server"></asp:Label>
</td>
<td>
</td>
</tr>
</table>
</form>
</body>
</html>
modified on Wednesday, January 20, 2010 4:20 PM
|
|
|
|
|
check whether app data has images or not...
shy boi wrote:
src is empty you did not give any image source..
|
|
|
|
|
Is it working fine on other browser say IE 7,FF etc.
Check the view source ang find the original url that is getting rendered..
Cheers!!
Brij
|
|
|
|
|
I have a textbox and a button.
If I type in the textbox like www.yahoo.com and hits on Button i would like to redirecting yahoo site.
I am using asp.net 2.0 and c#.
Plz help me.
thnx in advance.
|
|
|
|
|
on button clik write this code respose.redirect(textboxid.text) will work for you
|
|
|
|
|
response.redirect("http://www.yahoo.com");
|
|
|
|