Web Forms :: Creating A Customized Yes No Alert Box
Jul 27, 2012i want to create popup in save click how it can be done?is it possible
View 1 Repliesi want to create popup in save click how it can be done?is it possible
View 1 RepliesI have to create a customized Next/ Previos solution, the DataPager is not flexible enough for what I want. This is what I have so far.
1. A user does a search and 100 records are returned, I have 25 records per page and so get 4 page numbers -- this is already done on search.aspx
2. The user clicks their choice (let's say its 'Post 10') and is taken to that record on details.aspx -- pretty standard stuff.
What I now need is a Next /Previous links on the details page -- so if the user clicked Post 10, on the details page will be two links, Next linking to Post 11 and Previous linking to Post 09. (i'll actually be using the post title as the text in the links not simply Next/Previous) I'm unsure about how I should begin to struture this, should I be looking at creating Temp Tables in Sql Server and step through the records or can I access the dataset from the search page and step through that?
I would like to be able to select a few rows from my database and display them on one page that I can share with other people. Therefore I need to generate a unique link that only displays the data I have chosen. It seems that using querystrings in this circumstance would create rather a long link, is there an alternative way?
View 1 RepliesCan I create a Google alert [URL] programmatically using C# and consume the feed to show in an asp.net application?
View 2 RepliesI have a web form that has 2 drop down menus, when the first drop down menu chooses something, I want the next drop down menu to populate according to the selection on the first drop down menu without the page reloading. Would I use ajax for this? What is the best way to accomplish this?
View 2 RepliesI've created a very simple website with two roles, "administrator" and "employees". I've also added users using asp.net configuration wizard for both. My concern, however, is that going ahead it will not possible to use the wizard to add new roles, assign them or alter them once the site is online. I won't be the administrator and so I need to find a way for the administrator to add new roles and assign them to users from a remote connection. Where can I find some information on creating such forms?
View 3 RepliesUsing a GridView to display unique website department names from a database table, is it possible to create a hyperlink in the GridView to that specific departments page? I'm a beginner and haven't found any examples so unsure as to how this would be accomplished.
View 8 Repliesam using vs 2005 and sqlserver 2005.in my database table (name : users) there are more than 10 lac records.i have to display the user details in a grid.if i wrote the sql query as " select * from users" then it is throwing the "System.OutOfMemoryException"So i wrote the query using rownumber (i mean first it will get inly specified no of records ex:25 )so it is displaying only that 25 recordshow to give paging in this situation...?y requirement is in the grid i want to get and display first 25 records with the paging asirst Previous 1 2 3 4 5 6 7 8 9 10 Next Last
View 5 RepliesI have the following situation I am having trouble with.
1) Users select some items from a checkbox & type a message in a textbox
2) The user clicks on a message preview button
3) Based on what they had selected, a message will be created. This message is stored in a database
4) I am using showModalDialog to display their message to the user.
5) The user is given two options, send & cancel
**Here is where the problem starts**
6) If the user clicks send, I want to call a server side method that sends this message to a portal (method already developed) I was trying to use "__doPostBack....", but this is throwing a javascript error.
I used customized sitemap providers to add dynamic nodes in the master page. ( by Override the " BuildSiteMap() " method, add dynamic node into the existing sitemap based on the user's roll. For example, when admin user login , I will add a dynamic node into the map as "Admin link", when general user login, I will add a dynamic node into the sitemap as "general", when default( not log in mood), I will add a dynamice node as "not log in " . menu works when the user first load the page, but menu never change again if I switch the user's log. Does anybody has a good idea how to either make the sitemap refresh when I switch the user's login ? Or any other good idear on how to make my goal accomplished?
View 6 RepliesI am using password recovery control in forgotpassword.aspx page. By default the password recovery control validates the Login id and the security question of a particular user. But i want to give an alternate option. That is, If the user forgets the security answer he can give his PAN Number as identificaiton. Its should be an option like either he can provide security answer or his PAN number. Can we acheive this functionality. Because from my knowledge it looks like Security Answer is mandatory. But i want to provide alternate option that user should give his security answer, if he forgets he can use PAN number for his identificaition. UpmMembershipProvider has default property (requiresQuestionAndAnswer) which is set as true.
View 1 Replies[Code]....
My question is: how can i create my own parameter based upon the QueryStringParameter?
Example:
[Code]....
I now called it QueryStringGuidParameter.
The purpose of this is: I'm not sending any querystring's via the aspx?querystring other thasn aspx?guid={guid identifier}.I hope my code below explains it al little bit.
[Code]....
A soon as a page Redirects f.i. with this example
[Code]....
Instead of calling Response.Redirect i call the Redirect i created. This transforms the querystring in a session with a guid and parameter. The Redirect only sends the guid in the querystring. and the receiving page picks up the guid and translates it back into a querystring.
Purpose is you have a secure way of dealing with info sending via querystrings. Lets say in the past you could easily get other info from the page by just changing a value in the key send via a querystring. In my case lets say the user request a Customer "A" with querystring ?ID=1.
Simple change the query in the addressbar to ?ID=2 (or something else) would give him another customer. Maybe a customer he is not allowed to see. (Of course this can be prevented also in the business layer, but that's not the point.)
So if i simply could create a new QueryStringParameter lets say called QueryStringGuidParameter which i can use in the ObjectDataSource but ideally just for all controllers which are able to use the QueryStringParameter , i don't have to go into code behind and set the SelectParameters in there.
I have an application as in the following,
[Code]....
The application works, but I would like to have 10 results per page. How easily can this be done? I don't want to use data view or grid view like most of the examples talk about, I would like to do this in the fashion that looks like what I have now, only not so many entries in a whole page.
How to use extension methods and customizes generic list collections??
View 1 RepliesI have a asp.net gridview control on my page with several fields and a couple of command fields. However, the update command is giving me problems.
Here is what works. The update command works provided I put straight text into the textboxes that appear. I even have one field that contains a dropdown list which works fine.
Here's the problem. I have two fields that need to access their value programmatically. These fields will reflect the current datetime and the current loggedin user from active directory. I have already created public strings in the C# code.
When I run the edit command on the asp form the grid uses one "DataKeyNames" element. With this the grid can update the selectedrow. However, I haven't been able to access it programmatically in the C# code. I can access the selectedrow in the "selectedindexchanged" event but then I am not able to update my fields in the gridview itself. So, part one of my question is how to I access the "DataKeyNames" properties of a gridview control.
if I can't access the "DataKeyName" property perhaps I could set the label nested within the gridview to the "myCurrentUser()" public string. I am inserting my code to hopefully make this clearer.
I'm gonna outline the application roughly: it's a tool, where people can upload a CSV-file, which contains their data for some crazy water-plant-biology-stuff. ;) The job of the application is (besides others) to validate their entered species. So far no problem, I've got my string-array with the correct species abbrevations, and i can parse the species names from the user-edited CSV-file.Whenever a species is found, that is not part of the reference-array its being sent to a GridView as a new row. All of the above works fine - if anything isn't explained well, just ask.
Now, what I want to do is to give the user a simple edit-function: beside the WRONG species name, it would be terrific, if there was some sort of drop-down-list, filled with the correct species names (which are stored as a string-array in my .cs-file!). The user looks at his wrong species, then just has to select the correct name from the drop-down-list, either updates row for row, or even better: edit every row, and update once at the end. Is this possible? I remember that it's quite easy to fill template-fields with data through SQL-connections etc, but is there a more simple way to do it? As said, I've got a fine string-array in my .cs-file behind the aspx-page.Haven't found any code for this. Are template-fields in the Gridview the right way?
Which might be a solution for the updating-problem: I keep storing the wrong names in the rows, and just add another column next to the species name, where this drop-down-list should appear. Then i add a button, which, when clicked, gets the old value & the new selected value for each row, and updates the data. Should work? So the problem remains: how do I add a template-field with many (<500) items in the .cs-file to a GridView-Column?
using Visual Studio 2008. This is for a website which produces .aspx webpages. I am creating a .master page template. I would like to create a horizontal drop down navigation menu using custom buttons. I have button jpg which i really like. I of course want the button to have the title ON the button. When i click on the button it should display its submenu below. This menu would use a sitemenu data source from the actual website. I dont see a way to use your own nav buttons in the Visual Studio toolbox. (sure you can edit the padding, color etc. but that's not what i want) Any suggestions or referrals to any generators that will work with an aspx page?
View 2 RepliesI've been looking for a good tutorial to teach me how to make a customized Paging control with a simple DataBound control like Repeater to implement a high performance paging feature. I've found a lot of articles about that issue, but non of them was a complete answer. Paging of Large Resultsets in ASP.NET. This one is awesome, with statistics and great comparison between the different methods of doing so, but the problem is it's too old before SQL Server had it's new function ROW_NUMBER() N-Layered Web Applications with ASP.NET 3.5 Part 4: Sorting, Paging and Filtering (The Database Paging Section and ignore the rest)
This one is almost perfect, but he used the grid's existing paging feature with a customized Method for paging, instead of a repeater. Custom SEO friendly paging with ASP.NET Repeater or DataList control I think this one is WAY too complicated, and things can get done easier. I'm using SQL, Items Repeater (with direct binding in the code-behind with no datasources used), PageNumbers repeater (which will have a link as an ItemTemplate to pass querystring so the used method could retrieve the next portion of Items), A Label to hold the current page number and title.
I've been trying to implement the example on N-Layered Web Applications with ASP.NET 3.5 Part 4: Sorting, Paging and Filtering (The Database Paging Section and ignore the rest). So far I've created a SQL command in my Data Access Lyaer that looks like this: WITH Records AS ( SELECT ItemId, ItemName, ROW_NUMBER() OVER ORDER BY ItemId) AS 'RowNumber' FROM Items) SELECT * FROM Records WHERE (RowNumber BETWEEN (@startIndex) AND @startIndex + @pageSize - 1)
Need to create a customized membership with database and web application in asp.net mvc.
View 1 Repliesi am developing a site in asp.net mvc 2.0.Now i have to implement customised user registrationpage by adding extra fields.i am using following code to create the user,
Membership.CreateUser(userName, password);
Roles.AddUserToRole(userName, "User");
UserProfile.NewUser.Initialize(userName, true);
UserProfile.NewUser.FirstName = firstName;
UserProfile.NewUser.LastName = lastName;
UserProfile.NewUser.Save();
I am new to SSRS. I have created a report and was able to deploy it on the server. I am calling the report from ASP.NET application. How can I change the CSS of the report? I want to change the styles for individual data cells of the table deing displayed also. How is it possible?
View 1 RepliesI have an ASP.NET page that updates customer profile information.
After updating and when the user clicks on Update button, i want to display alert message.
Can we customize it to edit the MsgBox title?
Can we edit the default msg that is displaying? If yes, Can anybody provide any samples.
I earlier used customized popup from AjaxToolkit. I have issues with that in IE6.0. So I don't want to go for that.
What I am trying to achieve here is, I am supplying xml as string (varchar) to my stored procedure, In stored procedure I want to parse this xml and fetch each Promotion record and insert into my table. Also once each record is inserted, I need to fetch the Identity of that record alongwith the AreaID attribute from the Parent node "Promotion" of each Promotion record and insert into second association table. how would I go about doing it, my generated xml is given as under.
[Code]....
i have a view model with a property like this one :
[RegularExpression(@"^d+$", ErrorMessageResourceType = typeof(Resources.Validation), ErrorMessageResourceName = "NumberValidationMsg" )]
public int? Number {get; set;}
NumberValidationMsg resource is set to "Only numbers allowed !".
but when I try to enter something like 'test' into Number field on form, ModelState displays the ErrorMessage with content similar to :
"The value 'test' is not valid for Number."
can this message be turned off, customized? (or maybe the best solution would be just to replace int? with string)
I am having a datatable in which the data is as follows
No Name Text
1 a abc
1 a xyz
1 a asd
2 b aaa
2 b bbb
I want to querry this data table to get the result as
No Name res1 res2 res3
1 a abc xyz asd
2 b aaa bbb