Building A Demo Account Which Will Reset Itself Periodically?
Jul 29, 2010
We are building a simple CMS with asp.net 3.5 and mssql2005We need to build a demo account for our customers and this will be published to public.So, we want to reset the content of the demo account on every 2 hours.What is the best way of building this kind of demo account?
View 1 Replies
Similar Messages:
Nov 24, 2012
I am required to develop a page for news updates where user of the website can see the latest news updates with images in hindi. Like some news paper website. [URL] ....
When user click on the read more or on the title of the news complete news will displayed on news on new tab.
when admin of the website update the new it will appear on the page. where recently updated news is display first position.
admin of the website have authority to do following task
1. update the news.
2.edit the news.
3.delete the news
Can i make use of sqlserver for storing the news or xml.
View 1 Replies
Jan 5, 2010
I'm trying to build a login form to authenticate google account using asp.net, I have read and found something but It's not clear.
View 3 Replies
Jan 7, 2011
I tried to publish a website from Visual Studio 2008 right clicking, Publish. And I entered an invalid account and clicked "remember this ..." So now I can't finish the publishing and I don't know how to reset that credential? How can I change that account?
View 1 Replies
Feb 9, 2011
I'm trying to show a demo of a Web site in progress in two ways, and having two different problems:
1. I created a test domain on GoDaddy. Tried to deploy there, but I need IIS 6 on it. Having trouble finding it. I started a web host on Aspspider.net, which has ASP.NET loaded on it. I have to wait until I can create a site. 2. I hoped to pass the deployment package to the client to load it onto his local machine. However, he got the following errors running the deploy.cmd file:
"Error: The metabase key '/lm/w3svc' could not be found.
Error: The metabase Admin Base Object could not be instantiated. Perhaps the 'ISS 6 Metabase Compatibility' feature is not installed.
Error: Class not registered"
Is there anything I can do about #2, or should I wait for #1 and hope I can deploy to the site when it's created?
View 1 Replies
Jul 28, 2014
I have a web app Which Uses Forms Authentication.
One thing that we want to be able to do on Support is login to a specific users account Via our admin account.
We are using the standard asp.net membership authentication.
The idea would be for the support technition to be able to login using credentials like admin(<Troubled User>) using the Admin Account password
We are using a a Standard ASP.Login Control
The real Issue is that the Me.Page.User.Identity.Name is set to the value on the CtlLogin.Username Property. I need it to be the the Support Login?
Login Control
Code:
<asp:Login ID="ctlLogin" runat="server" DisplayRememberMe="False" Font-Names="Arial Rounded MT Bold" Font-Size="12pt" ForeColor="Black"
MembershipProvider="MembershipProvider" Width="100%" TitleText="" UserNameLabelText="User" VisibleWhenLoggedIn="False" RememberMeSet="True"
PasswordLabelText="Password" EnableTheming="False" Height="35px" >
[Code] ....
Validate User Script
Code:
Dim objstrSupUser As String = ""
'Load the user from the membership provider
Dim strUserName As String = ctlLogin.UserName
If ctlLogin.UserName.IndexOf("(") > 0 Then
objstrSupUser = Regex.Match(strUserName, "(([^)]*))").Groups(1).Value
[Code] ....
View 5 Replies
Feb 2, 2011
Do I just need to make a field for account type in my user account table? In a technical way, if(account type = admin) then the account would log as admin; otherwise, a user with less privileges.
View 7 Replies
Oct 15, 2010
I have an ASP.NET page where at the top of the page is a search box. There are 2 text boxes - one is an autocomplete extender for the Name on a database, and one is just inputting the ID.The page features DetailsViews and GridViews primarily, and even when no account has been searched for, these display blank data which is not ideal. I sort of fixed this by using if (IsPostBack), encasing the elements in a placeholder and setting it to visible only if the page ispostback. But this doesn't cover if the user types in an incorrect ID.
Also, some accounts have huge amounts of data inside the GridView's. I had an issue where because I have no way of detecting when a data source's rows has changed, I end up binding whenever the page loads (Page_Load method). I've come to realise this is simply very bad - there are lots of times when the user can click various things in the page and have the page postback, and it takes an eternity to load each time I click something for accounts with lots of data.Anyway, my question is essentially two-fold but I have a feeling the solution will be similar:1: How can I detect when there are no accounts returned when searching, and disable the Grids/Detailsviews and show an error message?2: How can I figure out when the user searches for another account and only rebind the grids after that has happened?
View 1 Replies
Nov 12, 2010
I have use the mvc 2 web site template and I would like to attach
A user db that I have already created
In my web config file I have change the connection string to this"
[Code]....
When I'm tring to register I'm getting this error :
Login failed for user ''. Description: An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: Login failed for user ''.Source Error:
[Code]....
I have set a break point in line 127 and I can clearly see that is getting the data (username ,password ,email) What is wrong( with the contion string)?
View 2 Replies
Jan 18, 2011
I want to run an event periodically on the server side that is to be initiated by the server periodically in asp.net scenario. There will be no request from client.
View 5 Replies
Jan 29, 2010
I need to update my db every 5 minutes but don't want it to effect how my web application is working (should work behind the screens).
I currently do a web services call from a button to do the manual update of the db but want this to happen automatically.
What is the best way to do this in asp.net in php the equivalent would be a cron job.
Can I have a class that makes this call in the background?
View 10 Replies
May 7, 2015
I want to call a function on every after one hour. I wrote this function in Global.asax file on Aplication_Start event. Its work fine in Local Host but not working after publishing it on web server.here is my code:
protected void Application_Start(object sender, EventArgs e)
{
Application["UsersOnline"] = 0;
[code]....
View 1 Replies
Aug 30, 2010
I am fresh new to asp.net. I try to convert my windows form into asp.net application. On my Windows form I use threads to monitor for changes in data sources to udpate my controls.However, I got no clue how to accomplish this in asp.net form. It seems I cannot create a thread in the page to update my controls in the page.
View 1 Replies
Oct 13, 2012
I need web page refresh for every 60sec and redirect to another page on without operation on page. If am doing any operation on page not refreshed and not redirected to another page. For example take 3 webpages.There is no opeartion on page 1 for 60 sec automatically redirect to page2.There is no opeartion on page 2 for 60 sec automatically redirect to page3,If there is doing any operation not redirect to another webpage.
View 1 Replies
May 7, 2015
I want to periodically refresh my ListView control on page in ASP.Net at regular intervals.
View 1 Replies
May 7, 2015
I have a situation like I have 5 buttons based on selection of button i need to display some documents related to that particular button. So I am getting button id and also related documents but i want refresh the repeater because it is showing only first button documents always...
View 1 Replies
Mar 20, 2013
i have taken a list view, in that i have multiple item controls. from that i want to refresh one particular label frequently and data of that label comes from database it checks that particular data each time when label refresh
so, how can i make this?
eg. in any online auction site a name of unique bidder changes frequently
View 1 Replies
Mar 9, 2011
I am logged in as the administrator when I installed an application named pdflatex.exe on my server. This application works as a converter from LaTeX input file to Pdf file. I host an Asp.net MVC 3 application running under an Application Pool Identity with Load User Profile = True. The Asp.net MVC 3 code contains a code that executes pdflatex.exe using System.Diagnostic.Process instance as follows:
Process p = new Process();
p.EnableRaisingEvents = true;
p.Exited += new EventHandler(p_Exited);
p.StartInfo.Arguments = "-interaction=nonstopmode " + inputpath;
p.StartInfo.WorkingDirectory = @"c:mydomain.comworking";
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "pdflatex.exe";
p.Start();
p.WaitForExit();
From the scenario above, the web application runs under a restricted acount but it executes an external application under a default account that I don't know. Can an application running under a less privileged account start a process executing another application under an administrative account?
View 2 Replies
Dec 16, 2010
I have a .net 3.5 application in c# with sql server 2008 at back end. The application is about assigning jobs to supervisors and then these supervisors have to write remarks about the job progress from time to time. There are two tables ; a JobAssign table with JobOrderNo and Supervisor columns, and a JobUpdate table with jobOrderNo,Date And Remarks(nvarchar) column.
When a supervisor is assinged a job he is sent an email but sometimes the supervisors do not write remarks about a job for some time. i want a stored procedure through which if the remarks of a job are not written for say 5 days an email is sent to the supervisor to do so? in my job update table there are multiple entries for a job so the stored procedure will have to check the Top Remarks Date for each jobOrderNo. then compare it to today date if the difference is difference is 5 days then send email. i have read posts on sending email through job scheduler but i'm new to stored procedure so have no idea how to write such.
View 12 Replies
May 7, 2015
Every 5 minutes automatic take screenshot capture & Save To Database Using WebPages
Is it possible or not?
View 1 Replies
Apr 4, 2013
I have a button on a webform. On button click event the following functions execute:
1. Fetch data from one instance of sql server
2. and insert the same data in another instance of sql server
above function is working fine.
My curiosity is that, is there any way through which my above functionality run after every 15 minutes without opening the webpage.
View 1 Replies
Sep 17, 2012
I am refreshing my gridview every 10 sec using update panel and Timer control.
In timer control i have:
protected void Timer1_Tick(object sender, EventArgs e){gv1.DataBind();}
Now i have a checkbox column in the gridview, and select all checkbox also, for functionality of checkboxes i am using javascript like what is explained by this article: [URL] ....
I like this way its simple and fast. but now when gridview refreshes the checkbox selection and others styles disappears.
Now what can i do to keep my selection as it is on gridview refresh. Do i have to stop the gridview refresh on checkbox selection?
View 1 Replies
Apr 6, 2010
I am runnign the SQL 2005 with Membership structure and two web-applications on the same server box. Each web application uses its own Application Name in aspnet_Applications table. There are two application names.
The users from web-app1 could not login to web-app2. Each web-apps uses different Application Pool. Each providers section of Membersip use correct applicationName from aspnet_Applications. The first application is working correct.
The problem is that sometimes the users could not login to web-application 2 during day. I get error Event code: 4006 Event message: Membership credential verification failed. The users start to login again after I Recycle - Stop - Start Application Pool of this web application.
View 1 Replies
Oct 23, 2010
I'm wondering if I should learn everything in C# like what WPF and Win Forms should learn to be excellent web developer or is there specifc C# for the web?
View 3 Replies
Sep 27, 2010
XML Webservice: the webservices takes in an XML request and responses with a XML response.im not sure if im doing the right thing for the request?ith the XML request, do i take the XML request from the page input parameter?
http://api.domain.com/webservice/xmlExample1.aspx?xml=<Example1><FirstName>David</FirstName></Example>
<-- XML Request (this looks very wrong)
xample1Response>
<Success>True</Success>
</Example1Response>
View 1 Replies