Web Forms :: Word / Image Verification For Security?
May 5, 2010
anyone have link or code to create image / word verification? i want to use this on my contact form to avoid spamming and better security. i've not found anything useful on net.
how you have implemented mathematics type captcha in comments sections in URL...I like to implement this type of captcha security, its more clean and user friendly.
Does anyone know if its possible to log someone into a site from their verification email? I don't want to take them to the login page from their email.
I'm using asp.net's built-in membership provider with security question-and-answer enabled for password recovery against a SQL Server 2005 db. For some users, this works fine and they're able to receive their passwords. For others, and it's not clear what separates the two groups, the security answer is never properly processed. It doesn't matter if the answer is correct or incorrect, the page merely reloads without confirming or denying the request.As for events, VerifyingAnswer is being triggered, but not AnswerLookupError (if answer is incorrect) or SendingMail (if answer is correct). I ran a SQL trace during one instance, and the aspnet_Membership_GetUserByName stored procedure is being called, but nothing else gets called after. I would expect that aspnet_Membership_GetPassword would be called, which passes the security answer as a parameter, but it isn't.
I'm using the following code to send an email verification link (from the security tutorials). How would I modify the code below so that if the user has already clicke the verification link, it will display "account already verified" and redirect them to the login page?
using System; using System.Web.Security; public partial class Verification : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (string.IsNullOrEmpty(Request.QueryString["ID"])) [code].....
I am using the register.aspx that came with VS2010 when I create a new website. When a user is created, the user is automatically logged and NOT send in a verification email. I thought I've modified that but it's not working. Here's what I have:
Doing password recovery, after a user enters their user name a verification page appears. The page seems to appear from out of nowhere as I did not create it.I would like to have controll over it and reformat it.PS: I have a number of small issues like this with Login. Is there a complete running sample somewhere that shows these things. C# code
I have a word document something like:I know how to read subject and all the text above subject.But how can i read the image.this is in a crucial position and i need to get this done soon.
I have one ogoing thread [URL]. IN addition to this thread I would like to insert image in newly generated word document. My problem here I can give our hosted server path using Img Source property. I want to copy or embed the imaged in the word document.
Let me know what is the best way to do it using asp.net/C#.
I am able to export a gridview and other tables into Word, but i want to include an image in this. How is this possible. If i do as below the image is not displayed.
I have a .Net 4 web application which has a folder called "docs" which is full of Word docs on the root of the website. The words docs are linked with a gridview in my "admin" section
I only want Autheicated users to be able to renders the word docs in the doc folder. I am finding if the user logs out and they manually type in the url to the Word document it renders the file eg.
www.mydomain.com/docs/something.doc
i have tried putting this in my web.config but did not work for the Word docs. It stops the rendering of .aspx files but not .doc's
Is this because the .doc extension is not hadled by the .Net framework and that I need to do something to Handler Mapping in IIS7? I would prefer to put all my security setting in the web.config ideally
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.
in my Asp.net web page (C# on backend) I use a Repeater, whose items consist of a title and a Flex chart (embedded .swf file). I am trying to export the contents of the Repeater to a Word document. My problem is to convert the SWF files into images and pass it on to the Word document.
The swf object has a public function which returns a byteArray representation of itself (public function grabScreen():ByteArray), but I do not know how to call it directly from c#. I have access to the mxml files, so I can make modifications to the swf files, if needed.
I have a word document which opens in a web browser using ASP.NET 2.0 this is the code:
[Code]....
THIS WORKS, PROMPTING THE USER WITH "OPEN" "SAVE" "CANCEL" OR SOME USERS WITH "SAVE" "CANCEL" DEPENDING ON USER INTERNET SECURITY SETTING. BUT FOR SECURITY ISSUES, MY BOSS WANT THIS WORD DOCUMENT TO BE OPENED IN WORD PROGRAM. (MICROSOFT WORD 93,97 ETC) IS THIS POSSIBLE....? OFCOURSE SAVING THE FILE IS OKAY, JUST OPENING THE DOCUMENT SHOULD BE NOT BROWSER.
My requirement is : I have to open a word document in Microsoft word from my web application and the word document is stored in the server location.
In javascript i wrote a code to open the word document like below. var dsWordApp = new ActiveXObject("Word.Application"); var WordDoc = dsWordApp.Documents.Open(FileName)
Using above script i am able to open the local word doc files but i am unable to open the server side word doc file.