web.config file setting in asp.net [closed] - asp.net

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
explain session type =sql server'

That allows session data to be stored in SQL Server. See this knowledge base article for a fuller description of the procedure.

It's used to determine where you store your session variables, in this case a SQL Server.
You can read more about it here.
EDIT: And even more here.

Here is a nice article about Exploring Session in ASP.Net. Have you ever used Google? We are more than welcome to help newbies but questions in this format is not encouraged ;-) Please explain more about your requirement.

Related

What options for statistical analysis with asp.net and ms-sql? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to do some statistical analysis with an ms-sql database for an aps.net application. What are the options as I don't see many built-in functions for my purpose? Thanks for any suggestions. Options that you actually use would be appreciated.
Check out MathDotNet, it can do pretty much anything you'd need.

How would one build a model of their project? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've been asked to model my application. I'm not clear what this means, Perhaps something related to the architecture of my project?. Does it mean giving them a break-up of the classes? Or something like building a use-case or class diagram? Or perhaps something else?
EDIT: I cannot ask them!
I'd go with UML (Unified Modelling Language). It allows you to lay out classes, methods, inheritance, etc. in a graphical format.
A quick Google search gives this FOSS option:
Umbrello UML Modeller
EDIT: Just realized that's linux-only, so here's the Wikipedia page for a whole bunch of other options.

Difference between http:// and http:\\ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What is difference between writing a URL (say google.com)
http://www.google.com
and
http:\\www.google.com
The syntax for url's is this..
scheme://domain:port/path?query_string
One works and the other doesn't.
http:\\www.google.com is not valid URL address.
Backslash is wrong. Do not use \ for URLs.
You can ask why http:##google.com or http:%%google.com is not working? Because it's built so. It's a kind of a rule: "for abc protocol write abc://"

How to rectify the error in asp.net [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I create an one webpage in asp.net all the time i am facing the following pbm how to rectify it..
if(ds.Tables[0].Rows.Count > 0)
Maybe you need to check that ds.Tables[0] exists first
If you are constantly checking on your pages to see if that dataset has a table with rows, I would think you would want to make some helper class to check that your dataset is not null, and that whatever tables have actual rows. Also you might want to think about moving these to typed datasets.

asp.net mvc module wiseapproach or table wise approach [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
asp.net mvc module wise approach or different controller and repository for each table approach is better?
Could you elaborate on your question? I think I understand... I like creating a repository for each table in a LINQ-to-SQL or entities model, for instance. I think that helps group together related logic.
HTH.

Resources