Web Forms :: Security That Effects Being Able To Use An I.P. Address Or DSN In A Data Source Name?
Dec 10, 2010
For some reason, I changed something today while installing an instance of SQL Server. And now if I try to use the i.p. address of the machine instead of the name of the machine in DATASource of my sqlconnection string, I get an error. It worked fine before.Also, what exactly is "networkService" as an option for security when creating an instance of SQl Server?
View 3 Replies
Similar Messages:
May 31, 2010
I created a website and i restrired the website such a way that i can be acessed from a IP i configured.I did this as shown in below steps which i got from:
http://support.microsoft.com/kb/324274
Under IP Address and Domain Name Restrictions, click Edit.
Do one of the following:To deny access, click Granted Access, and then click Add. In the Deny Access On dialog box that appears, specify the option that you want, and then click OK.The computer, group of computers, or domain that you specified is added to the list.
To grant access, click Denied Access, and then click Add. In the Grant Access On dialog box that appears, select the option that you want, and then click OK.
The computer, group of computers, or domain that you selected is added to the list. Click OK.
But its not working . I am able to browse from other machine which have a different ohter IP. Do i have to configure somewhere else ?
View 3 Replies
Jul 8, 2010
I see that the changes done to CAS permissions (say changing the permission set of applications running in my computer) do not work immediately. I noticed before that the changes did take effect later on. Can anyone tell me what needs to be done to see the effects of the changes immediately?
View 3 Replies
Jul 20, 2010
How can I emulate the effects of user cookies being disabled?
View 2 Replies
May 19, 2010
I am new to developing asp.net. I have a Microsoft Access database file (.mdb) I am including as a data source on a form. This populates a drop down list on the page. When I run the page in a browser it immediately asks for authentication. If I put in my windows username and password the page pulls up fine, and the drop down is populated with the data. If I don't, it just give me a 403 error and says I'm not authorized. I cannot figure out how to make this page stop requiring authentication. I have only tried one thing. In the web.config file there is an attribute called authentication. It was set to "Windows" I tried setting it to "None" but that did not appear to have any effect. It still asked for my username and password. How can I make an asp web page using a Microsoft Access data source not reqire user authentication to view the web page?
View 1 Replies
Sep 26, 2010
if it is possible to use a WCF Dataservice as the MemberShipProvider for a forms auth application. I have written code for a provider (below), but I do not know what to do as far as a connection string, or any other web.config properties.
Please Help!!! Here is the code for my provider, anytime it says Odbc that is because I based this off of the custom Odbc provider on the msdn site. The only ACTUAL references to any odbc connection are in the comments:
[Code]....
View 1 Replies
Jan 6, 2011
I recently started using SSRS 2010 and I didnt come across this issue in 2005 or 2008 versions of reporting services.
I have a report that drills down to child report1 and then that drills down to child report 2 but clicking a field in the report.
When I click on the link on the first report to go to the second report. I get this error message
"A data source instance has no tbeen supplied for the data source ''reprort2dataset"
I am not sure how to handle this error.
All reports run fine stand alone, but when I try to link them up I get that error.
I have a report viewer running the reports in an aspx page.
View 1 Replies
Aug 4, 2010
Where and what am i missing?
this code produces some error:
DataSet ds = services.getOrdersReport(1, "", DateTime.Parse(System.DateTime.Now.Date.ToShortDateString()));
ReportDataSource datasource = new ReportDataSource("JMJ", ds.Tables[0]);
rv.LocalReport.DataSources.Clear();
rv.LocalReport.DataSources.Add(datasource);
rv.LocalReport.Refresh();
ERROR :
A data source instance has not been supplied for the data source 'dsOrders_tblOrdersReport'
'dsOrders_tblOrdersReport' -- name of the table designed in dataset.XSD
View 1 Replies
Mar 24, 2010
I am using an accordion pane with 10 panes in a modal pop up extender.I also have 10 link buttons in the same modal pop up on clicking each button respective pane should be opened. There is no issue in opening the panes on button click. I did it in the click event dynamically. But the panes are opened directly without any easing effects or animation applied to them. Whereas when we click on header the animation is working.
View 2 Replies
May 14, 2010
I am getting the following error while i bind the dataset dynamically in reportviewer(Asp .net 4.0) . I have binded the dataset using stroedprocedure.
Error:A data source instance has not been supplied for the data source 'DataSet1'.
View 3 Replies
Mar 2, 2011
i m trying to develop a tabbed content slider. during this i am facing two problems.
first i don't know how to create the queue effects mean, i want to animate first div, after completion of first animation than second animation would be started.
for this i using the callback function here, but i want to know is there any other procedure to do this thing.
second there is jerk in the animation at second and fourth tab.
[code]....
View 2 Replies
May 31, 2010
I've implemented URL routing in my new ASP.NET 4 Web Forms application and it's actually working quite nicely. It's an ecommerce app so product names are in the URL now -- as opposed to ProductIDs.The other day, as I was testing the application, I came across a situation where two product names had identical names. It then dawned on me that in order to prevent this from happening, one of the things I'll have to implement is adding product categories in front of the product name -- which is not a bad idea to begin with. However, now I'll end up with a really long varchar field in the database that needs to be indexed. Additionally, I'll have to make sure that this field will stay unique i.e. I can't allow /electronics/digital-media-players/accessories/some-generic-recharger in that field more than once otherwise, my URL routing logic won't be able to determine which product the user is requesting.I'm sure others have run into such issues. I'd appreciate some advice on this.
Is adding product category in front of the product name in an effort to make it as unique as possible a good idea? After all it's a lot less likely that some-generic-recharger will be there more than once under a specific product category than in any category.Will indexing a field with such long varchar values be a problem in terms of database and lookup performance?Is there another approach that would work better in my situation?
View 1 Replies
May 7, 2010
i have an aspx page which on page load needs to populate a text box with the current users email address (user is in Active Directory), any body know how to retrieve the email address from Active Directory, i have read this article on the web but am a bit confused
string userName = Environment.UserName;
string domainName = Environment.UserDomainName;
//Set the correct format for the AD query and filter
string ldapQueryFormat = @"LDAP://{0}.com/DC={0},DC=com";
string queryFilterFormat = @"(&(samAccountName={0})(objectCategory=person)(objectClass=user))";
SearchResult result = null;
using(DirectoryEntry root = newDirectoryEntry(rootQuery))
{
using(DirectorySearcher searcher = new DirectorySearcher(root))
{
searcher.Filter = searchFilter;
SearchResultCollection results = searcher.FindAll();
result = (results.Count != 0) ? results[0] : null;
}
}
string primaryEmail = result.Properties["mail"][0] as string;
There is no defintion of rootQuery- so not sure what that is, or a definition for searchFilter
View 1 Replies
Apr 26, 2010
i have developed one website,
this website should be free of cost to india.
if any other abroad countries, it should not access without paying the money...
how can i do this concept...
View 4 Replies
Mar 9, 2010
I have an application where in the User Authentication is from the AD useing Directory services.
If i type in the address of a valid page from the application into the Address Bar, it throws me to the Login Page.
However if i am logged in and i type in the address of a valid webpage, the application takes me to the page. Is there any way that this can be restricted.
If i type in the URL into the address bar the application should throw me to the Home page of the application.
View 1 Replies
Sep 21, 2010
we have one e-commece website which combine one ip address and 4 domains, I want apply for one ssl certificate bind ip for this site, is it possible to be used for 4 domains? is it possible to apply for certificate for ip address?
View 1 Replies
Nov 19, 2010
I want to increase the security of my website, does creating http module that block certain ip address will increase security?
Since IP Address can be manipulated if I'm not mistaken, I'm not sure that creating HTTP Module will help.
View 1 Replies
Jan 7, 2010
I am using gridview with update panel Animation extender for updating effects. Everything is working fine but when page expires(means session ends) and I try to uupdate(edit,delete record) it fadeout the grid but donot fadein and shows following javascript error as image. I want if session ends it should redirect to login instead of fading out and showing javascript error message
View 5 Replies
Sep 17, 2010
I would like to develop a web application in which I can track the details(IP address...etc) of my website visitors....using vb
to implement the above web application
View 1 Replies
Oct 7, 2010
In my update Membership account routine, I have the sub:
[Code]....
This sub runs successfully and everything is updated, including the membership question and answer, except the membership.getuser.email address which is not updated.
View 1 Replies
Mar 18, 2011
I have a create user wizard on my page. Requires Security question hasbeen set to false. Once a new user is registered they can log in fine. If they forget their password, i have written code so that the user can enter the email address they used to register and a replacement is sent. The problem is I have written an application that is accessed by different people. So if the user that registered the account leaves the company
View 1 Replies
Mar 19, 2010
I want to know how to get the unique address of PC over the internet, LAN,WAN,Without any network connection,Coz For Some Security Reason...
as well as i want to know about the following....
Windows IP Configuration:-
1. Host Name
Ethernet Adapter Local Area Connection:-
1.Physical Address (MAC Address)
2.IP Address
3.Default GateWay
4.DHCP Server
5. DNS Address
I want to know unique Address for PC which should not be the same address for other PC Around The World...
Coz MAC Address also can be change.. so how to know the unique address how is accesing my Website..
View 11 Replies
Oct 11, 2010
We are using Profile.FirstName and Profile.LastName to get current user's firstname/last name. How do we get current user's email address?
View 2 Replies
Jan 11, 2011
I am using .net membership, My question is how can i get a member email address by username?
View 1 Replies
Mar 26, 2016
How to add opening and closing effects of bootstrap model popup on Modelpopup Extender. I have tried but not solved this issue....
Look at this bootstrap model popup link .it open from top when click on demo button [URL] ....
View 1 Replies