Web Forms :: Way To Upload Control To Allow Users To Basically Create An Avatar For A Record

Nov 10, 2010

I would like to use the image (file) upload control to allow users to basically create an avatar for a record they manage.I would like to enforce the following:1) Type (PNG only)2) Dimensions (X pixles by X pixels)3) Size (less than XYZ kilobytes) 4) Rename the file to something organized (for my sake)5) Not open some gaping hole in my file system (security)Some of these are pretty easy to do it seems.

View 1 Replies


Similar Messages:

Web Forms :: File Upload Control - Allow Users To Select Multiple Files

Apr 9, 2013

I know the asp.net file upload control only allows users to select one file at a time, however i am looking for another way using asp.net to allow the users to select multiple files?

View 1 Replies

Forms Data Controls :: Want Users To Select A Record In The GridView And Then Have That Record Open Up In The Detailsview?

Oct 6, 2010

I want users to select a record in the GridView and then have that record open up in the Detailsview. How would I go about getting these two tools to communicate?

View 4 Replies

Best Way To Let Users Upload Pix To Website Is To Use The FileUpload Control?

Apr 10, 2010

best way to let users upload pix to your website is to use the FileUpload control?

View 4 Replies

Is It Possible To Restrict Users To Not Be Able To Upload .msg Or .gifs With The .net File Upload

Aug 11, 2010

I need to figure out a way to prevent users from uploading a couple file types in my vb.net page. How can I prevent users from uploading .msg or .gifs during a file upload?

View 3 Replies

Image Upload Control (bonus - Allows Users To Crop Image Before Saving)

Apr 10, 2010

We have a scenario where we would like to allow our users to upload images to the site. We are running on ASP.Net. A quick search did not result in anything good. It would be great if the control is free/open source but we do not mind paying a little bit.

View 1 Replies

C# - Create A Custom File Upload Control From Scratch

Apr 1, 2011

I have tried using the FileUpload control in ASP.net and found some strange problems. I have decided to scrap this control and create a custom control. Is it possible to create a file upload control from scratch?

View 3 Replies

C# - Administer Website (create New Users, Assign Users To Roles, Etc.) From A Windows App?

Feb 9, 2010

I have an asp.net web app that uses forms-based authentication, a SqlMembershipProvider (using an encrypted password format), and a SqlRoleProvider. I need to know if it's possible to administer the users (create new users, assign them to roles, etc.) from a windows application - the powers that be don't want any administrative functionality in the web app itself.

Here is the membership provider definition from web.config:

[code]....

So, obviously, I have a Sql Server database that contains the users and roles for the web app. I'd like to create a separate windows app that references the web app assembly, and use the configured MembershipProvider, RoleProvider, and machineKey to create users, assign users to roles, etc. If that's not possible, I can duplicate the configuration settings from web.config within the windows app. But I don't know how to do this either.

View 3 Replies

Security :: After Successful Creation Of 3 Users On My Web Site Now Cannot Create Users

Dec 6, 2010

[Code]....

after successful creation of 3 users on my web site now cannot create users

View 9 Replies

Web Forms :: Allow Users To Upload And Delete Files?

May 13, 2010

How do I allow users to upload files to a subFolder under the root web folder?

1. Display a list of filenames of file type (.doc, .txt, .pdf) on one webpage(ListOfFiles.aspx).
2. Make those filenames hyperlinks so that when clicked on, the file is displayed in the browser.
3. Have another page(Admin.aspx) that allows the user to upload and delete those files residing in that subFolder.

View 1 Replies

Forms Data Controls :: When Pick A New Instructor, The Value Put Into The Table Is Basically Random?

Mar 11, 2010

Why is this so hard? Seems like a simple task:

Here is what I am doing. Gridview to list a table. The table is mostly keys so I display one value and have a dropdown list to update the Instructor (key). Like one normally does, the dropdown list has a display value and a 'hidden' value which should be the value updated to the table, in the UPDATE event.

It does not work.

(1) When I click 'edit' the value in that field that was on the list of the grid is NOT the same value in the DropdownList, so the index of the ddl is not coming from the value on the grid (which is a hidden field on the grid).

(2) When I pick a new instructor, the value put into the table is basically random.

I would debug it but I have no idea what events to look at or how to look at the actions taking place during edit and update.

[Code]....

View 2 Replies

Web Forms :: Allow Users To Upload Only Text Files (txt) In FileUpload

Aug 21, 2012

How to restrict the fileuploader control to restrict for notepad only.

If i have choosen the file other than the notepad, it should show me an error.

View 1 Replies

Forms Data Controls :: Upload Button To Insert Record At The Same Time?

Nov 12, 2010

I've got a DetailsView control on the page, which includes a FileUpload control. Both parts work individually e.g. I can upload a file and insert a record but what I'd like to be able to do is do both with one click - either on the Upload Buttton or on the Insert record text.

I have a button click event:

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click

But I'm not sure how to call the Insert Record event on the detailsView control.

View 6 Replies

Forms Data Controls :: Image Upload In Gridview - Save Multiple Record Into Database

Feb 18, 2010

I have another problem is that I have Placed a file upload control in Empty template of Gridview to have multiple record insert. I have used viewstate to save multiple record into database. But problem is that I am able to find the control but it not giving any value.I have following code.

[Code]....

in above code

[Code]....

View 2 Replies

Users Cannot Update Record Through The Browser?

Jul 15, 2010

We have a simple SQL Server database with an ASP.NET front end.

I can easily update a record from my browser.

Another person cannot: he edits the field and hits the "update" button, but the change is not propagated to the database. The old value remains. He is using Internet Explorer. I checked the database, and his change is not propagated. There is no error thrown.

He WAS able to edit in May. Today he can't. but I can.

I can even update it with the Google Chrome browser.

View 1 Replies

Security :: Get The Avatar (property) Of The Current Login User?

Oct 1, 2010

I am using .net membership. i got my login page where i want to get the avatar (property) of the current login user and save in a cookie but dont know how can i achieve that?

[Code]....

View 1 Replies

VS 2010 Gridview - Blank Row To Allow Users To Add A New Record

Jan 18, 2012

Have a gridview witha column that is read-only:

Code:
<asp:BoundField HeaderText="QTY" ReadOnly="True" DataField="qty">
<ItemStyle Width="150px" BackColor="LightGray" />
</asp:BoundField>

at the bottom of the grid I'm going to have a blank row to allow users to add a new record.

drow = dt.NewRow()

How do I make the new row column a dropdownlist?

View 2 Replies

Databases :: How To Basically Call A StoredProcedure(Oracle) From .NET

Jun 15, 2010

What is the basic rule for calling Oracle StoredProcedure from .NET

View 7 Replies

Architecture :: What Basically Is Factory Design Pattern

Jul 17, 2010

I visited this Link to study about Factory design pattern.http://wiki.asp.net/page.aspx/310/factory/ But i am confused about it still. What i understood is that we must use an Interface to define a class .In the interface we will give the prototype of functions and later on we will define it in concrete class. Is that simple concept is Factory design pattern ?

View 13 Replies

Security :: How To Display Logged-in User's Avatar And Full Name On Master Page

Nov 11, 2010

I want to display logged-in user's Full Name & Avatar on the asp.net(C#) master page.

let me know any feedback on how to do that?

View 1 Replies

Data Controls :: Store Avatar Image In Disk (Folder) Or Database?

Nov 6, 2013

m storing profile image or avatar in folder.. which is best method folder or database

View 1 Replies

Master Page Basically Contains A Menu Built Using HTML Table

Feb 13, 2012

I have a situation where I'm using a single Masterpage and two Content Pages. The Master page basically contains a menu built using an HTML Table. The one Content Page contains the marjority of my site content. The way the menu works is that when user selects a menu item, a javascript function executes that evaulates which menu item was selected.

Now, this is where I'm not sure what to do next. Should I load the next Content Page in this javascript function or somewhere in the CodeBehind of the Content Page? I'm trying to find examples where I can load a page using Javascript but not having any luck.

View 20 Replies

Security :: Membership Upload Users?

Jan 24, 2010

I have a database of users that we used to have on a different system. The users already have their username and passwords associated with.

Now we are switching the entire system to .Net , and we will be using the membership to authenticate the users and start creating the new users with the wizard.

My question is : how could we import the users from a different database (mysql) , to the membership database on MS SQL ?

And also the passwords on the mysql database are in clear text , when we import them to the membership database on ms sql , is it going to apply the hash on them ?

View 1 Replies

MVC :: Upload Image (path) To DB By Site Users

Feb 22, 2011

I'm trying to find a way for users to upload image to my site ,

In my db table I have a column name Image1 type image [allow null]

And I would like the user (among other fileds to fill, to upload image )

View 7 Replies

Stop IE Users Typing Into The File Upload Input?

Mar 17, 2010

My testers have discovered that if you type free text into a file upload input then none of the buttons on the page work until that text is removed (so the page cannot be submitted).

I am able to replicate this with the following ASPX code (with no code behind):

<%@ Page Language="C#" AutoEventWireup="true" %>
<!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">
<body>
<form id="form1" runat="server">
<div>
<asp:FileUpload ID="fuTest" runat="server" />
<asp:Button ID="btnSubmit" runat="server" Text="Submit" />
</div>
</form>
</body>
</html>

(Note that I haven't bound any handlers to the page; despite this, the page is submitted when the submit button is clicked only if no text is entered into the upload text box)

Is there any way to prevent users from typing free text into a file upload control? It seems that this is only possible in IE - Firefox and Chrome natively prevent text from being entered into upload input fields.

I've seen solutions elsewhere which suggest hiding input and replacing it with a label / button combo, but this seems like it might cause more problems and work inconsistently across browsers.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved