New answers tagged asp.net
1
What your are looking for is how to manage session in a MVC application.
There are several ways to do so.
You could use ViewData, ViewBag, TempData or Session
Another way to do it would be to have only one page with the six forms.
The user would navigate through the form using javascript to show/hide appropriate content.
At the end he would submit all ...
0
On the link you give on the style_accordion.css you have this style:
body{
position:relative;
margin:0;
font-family:arial;
-webkit-touch-callout:none;
-webkit-text-size-adjust:none;
-webkit-user-select: none; /*<-- this line for chrome */
}
that prevent the selection on entire page.
3
Fetch (from a data source) what data is relevant to the current page and show it.If you want to show all the data in a page (Ex : A summary page of all the pages, Create a view model which holds all the data). You can fetch data from a variety of source like DB tables/Web Service/XML file/Cached data /Session etc..
Each of views can bind to individual view ...
0
This ended up being an issue with a css style with a data URI. Apparently IE7 recognizes this as mixed content. The modernizer was dynamically loading a header tag which is the element the offending css style was applied to.
0
you dont need to databind your gridview in rowupdating if you have a datasource handling updates for you, can you try this and see what happens?
protected void GridView1_RowUpdating(object sender, System.Web.UI.WebControls.GridViewUpdateEventArgs e)
{
TextBox Textbox1 = (TextBox)GridView1.Rows[e.RowIndex].FindControl("Textbox1");
Textbox1.Text = ...
0
Didier's answer is mostly correct, but to define a class value in htmlAttributes object, you need to use this syntax:
Html.DropDownListFor(..., new { @class = "myclassname" } );
The "@" is to let the compiler know that this is not the keyword "class". Using "class" will result in a compilation error.
0
You should wrap your SPWeb code in a using block
using(SPWeb web = SPContext.Current.Web) {
...
}
This will reduce any memory leaks.
That said, there's an easier way to get the items in your folder. The answer on this post should point you in the right direction.
0
From the documentation Environment.StackTrace i would say it is possible.
They say
The stack trace information for each method call is formatted as follows:
"at FullClassName. MethodName (MethodParams) in FileName :line LineNumber "
1
Unfortunately, this is not possible: at the time when you catch the exception in the handler, all the stack frames with the method parameters are gone. Once the control leaves your function, you can no longer access its parameter values.
Since you know the specific function where the crash happens, you could set up an exception handler there to collect all ...
1
The System.Web.HttpContext.Current.Response.Write is not working inside the UpdatePanel and maybe you also have javascript errors.
The reason is that the UpdatePanel is prepare on an xml struct a part of the page, and send it to the client with ajax - the Response.Write from the other side is direct try to write on the browser page - but here we have ajax ...
0
I think the problem is when you select the row, becouse you select the row, take the textbox but never change the value:
protected void GridView1_RowUpdating(object sender, System.Web.UI.WebControls.GridViewUpdateEventArgs e)
{
TextBox Textbox1 = (TextBox)GridView1.Rows[e.RowIndex].FindControl("Textbox1 ");
Label Label2 = new Label();
...
0
I would capture the exception in the method it's thrown, gather your parameters and any other needed info, then rethrow the error with a new ApplicationException or other custom Exception that contains your additional info.
0
I'm going out on a limb here and saying that this is a CSS issue.
You're referencing a CssClass called round - Ideally we would need to see that first.
Though I am going to guess you have a .round:focus {} too? to style the currently focused textbox. If so, this isn't supported in less than I.E 8 and will likely have some funky behaviour...
If this is the ...
0
Have you tried calling Request.End() after you start the async process? That will force the current request to end right away. Not sure if that would work but something for you to try.
Note that launching background threads is not a preferable thing to do in web pages since you are not guaranteed that that thread will not be killed before completing what it ...
0
Your error is that you have make string the part of the code that must be run. Remove the " from this line:
var js =
window.onpageshow =
function (event) { if (event.persisted) { window.location.reload() } };
And one more, you can remove that part of stript from inside the update panel and place it just before.
0
Most likely you need to find the control you want first then grab the text, something like this:
Dim tb as TextBox
tb = CType(GridView1.SelectedRow.Cells(1).FindControl("ID_Of_Some_textbox"), TextBox)
Dim userRoleString As String = tb.Text
EDIT: Added Sample code
The basic Idea:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" ...
-1
Here some key points
async methods are .Net 4.5 features.
async suffix is a convention only for methods that support async
More on async here
In your case you should use Thread or a BackgroundWorker
0
You may want to use a control to display your error. For example:
In the aspx/ascx
<asp:Label id="ErrorMessage" runat="server" />
in the page/control code behind
//call TheClass
TheClass c = new TheClass();
string error = c.TheMethod();
if (!string.IsNullOrEmpty(error))
{
ErrorMessage.Text = error;
}
in TheClass
public class TheClass
{
...
0
When you use the HttpContext.Current.Response.Write on code behind is direct send to the page your text, at any random point of page render.
Maybe on top, maybe on bottom, on some point that you can not control if you use the code behind to call it.
Change the way you show your message, at a minimum you can use a literal control to render there your output ...
0
By using that you're simply dumping text to the top of the page, typically outside of the <html> tags. This can have a knock-on effect to the rest of the pages style; i see the same when i am spitting out test responses.
Instead, put yourself a label control on your page and populate that instead. you can put it exactly where you want and simply call:
...
0
You seem to have two classes called Video. If you need both, you'll need to project from one to the other before your return statement:
return query.Select(dbVideo => new Appname.Video()
{
Prop1 = dbVideo.Prop1,
Prop2 = dbVideo.Prop2,
// etc.
});
Though you'll probably need to change the return type to an ...
1
You want to go 1 level deeper and do xmlDoc.Elements("PRODMENUS").Elements("MENU")
var menus = from menu in xmlDoc.Elements("PRODMENUS").Elements("MENU")
select new Menu
{
Id = Convert.ToInt32(menu.Attribute("id").Value),
ShortName = menu.Attribute("shortname").Value,
MealName = ...
6
You are very close
XDocument xmlDoc = XDocument.Load(uri);
var menus = from menu in xmlDoc.Descendants("MENU")
select new Menu
{
Id = Convert.ToInt32(menu.Attribute("id").Value),
ShortName = menu.Attribute("shortname").Value,
MealName = menu.Attribute("mealname").Value,
...
1
You need to add the Panel to the page:
protected void Button1_Click(object sender, EventArgs e)
{
Panel panel1 = new Panel();
Label newLabel = new Label();
newLabel.ID = "lbltest";
newLabel.Text = "my new label..";
panel1.Controls.Add(newLabel);
//Do this
SomeControlOnYourPage.Controls.Add(panel1);
}
0
Create an EditorTemplate for your BasicIdentification class called BasicIdentification.cshtml.
<table>
<tbody>
<tr>
<td>
@Html.DisplayFor(model => model.FName)
@Html.EditorFor(model => model.FName)
</td>
<td>
@Html.DisplayFor(model => model.LName)
...
0
Change
IQueryable<Video> query =
to
IQueryable<Appname.Models.Video> query =
The reason for your error is that you have the type Video defined twice and because of using a short type name you accidentally reference not the one Video you should.
Also change it in the method's return value
public IQueryable<Appname.Models.Video> ...
1
You have to add the Panel to some control in your web page or your top level form element if you don't have anywhere else to put it.
protected void Button1_Click(object sender, EventArgs e)
{
Panel panel1 = new Panel();
Label newLabel = new Label();
newLabel.ID = "lbltest";
newLabel.Text = "my new label..";
panel1.Controls.Add(newLabel);
...
1
You must add your panel inside of any control which exists on your page.
0
Building on Simon's answer, a similar approach is to get the Enum values to display from a Resource file, instead of in a description attribute within the Enum itself. This is helpful if your site needs to be rendered in more than one language and if you were to have a specific resource file for Enums, you could go one step further and have just Enum values, ...
1
If you can ensure the app stays running all the time you can skip scheduled tasks and use Quartz.NET. In this case, even if it shuts down using quartz would not be that bad -- unless there is something else to this having a few old files hanging around while the app is idle wouldn't hurt.
Insofar as handling this, I would store in an appropriate manner (eg ...
0
What do you mean by "validate"? CuteEditor can remove scripts from content - is that it? If you really mean validate javascript then I suggest you take a look at jslint.
1
Are you able to set up a scheduled task on the server?
This sort of thing is perfect for a simple console app that simply deletes files that have a modified date/time that is older than, say, now.AddMinutes(-10).
The task can run every 10 minutes or so if you like too.
Sometimes best to keep this sort of thing away from your website. Let your site serve ...
2
When you set TextMode="MultiLine", the output will be a textarea, instead of input. So you must use this:
$(this).find('textarea[id*=txtHelpText]').val();
1
Why not delete it after manipulating? Or whatever the last step in the process is? That would seem to be the best and easiest way.
Depending on volume, it's probably not a great idea to do a single task for each file - rather you should batch them into a queue and have a single thread process the queue.
For instance, you can spin up a background thread in ...
0
A variation from kidwon idea:
In the same method, same part:
function simulateMouseEvent (event, simulatedType) {
// Ignore multi-touch events
if (event.originalEvent.touches.length > 1) {
return;
}
event.preventDefault();
replace with:
function simulateMouseEvent (event, simulatedType) {
// Ignore multi-touch events
...
1
You need to populate a hidden field with Javascript (see this question for how to do that), and then send that field back to the server so that it's avaialble within ASP.NET.
ASP.NET is incapable of reading detailed browser information like that directly (you're talking about sending some very specific information from the client's browser to the ASP.NET ...
2
A timer is a good method to schedule something in the future. You could even reset the timer if the user requests the file again. Just give the timer a delegate that deletes the file when the timer fires.
2
Right Click your Project and go to Properties
On left hand side click Settings
Click the link to create a settings file
In The Name Type DBTimeout
In the Type set to int
In the Scope set to Application
In the value set to 3600 (or any other value)
Save this and then go to your code behind and add the following:
db.CommandTimeout = ...
0
Here is an easier way works great for ASP.NET:
Add this in your .aspx page
<script type="text/javascript">
function clickButton(e, buttonid) {
var evt = e ? e : window.event;
var bt = document.getElementById(buttonid);
if (bt) {
if (evt.keyCode == 13) {
bt.click();
...
0
Did you set (web.config)
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
See http://msdn.microsoft.com/en-us/library/hh975440.aspx
"Setting this compatibility switch is mandatory for WebSockets-enabled applications, for using Task-based asynchrony in Web Forms pages, and for ...
0
You can format your date to preferred format on client side or server side:
Server side, just make a property to be string and then call ToString on your date with desired format.
Client side, you may have computed property that will format date and data bind to that property.
Sample:
model.formatedDate = ko.computed(function() {
return ...
0
How desperate are you?
If you're not desperate enough to try anything, anything to get it to work, don't read on. This will not be nice. OK? OK.
The trick is to make the web app think that it's not a password box. In other words, don't use TextMode="password".
Then in Page_Load, put txt_punch.Attributes["type"] = "password"
That's it. The browser will ...
0
you also need this:
if (e.Row.RowType == DataControlRowType.DataRow)
where you do the summation.
Note: the variables need to be declared outside the event handler or they will be zeroed on each iteration.
EDIT- zero out the summation variable when e.Row.RowType == DataControlRowType.Header
EDIT Do something like this:
double grand_total = 0;
...
0
The page needed to know absolutely that you wanted a popup form, even though it just opens a new tab. Worked like a charm.
try
{
string strDOT = txtXingList.Text;
DateTime DT = DateTime.Now;
string newWin = "window.open('../Application/AppsSB.aspx?DOT=" + strDOT + "&DT=" + DT + "');";
...
0
You can make ClientID static:
<asp:TextBox ID="NotesTextBox" runat="server" Text='<%# Bind("Notes") %>' ClientIDMode="Static" TextMode="MultiLine" Rows="3" Width="350px" />
var txtAddNotes = document.getElementById("NotesTextBox");
0
in the .cs or code behind page, you can reference the values for the controls on your page by simply referencing the control id name and the appropriate property.
If your using any of the Visual Studio development platform, it should automatically (using intellisense) show you the methods and properties of the control you're referencing.
Example from your ...
0
This stack overflow question might have some answers for you.
given a background color, how to get a foreground color that make it readable on that background color?
Possible other solutions include:
Add picker for foreground color.
Create preset foreground colors for each available background color.
0
Figured it out now. I added the line below to page_load (!isPostBack) so filter applies at first load.
if (gvFilter.OEM == null || gvFilter.OEM == 0 ) { Filter_DataSet(null, null); }
Created a custom Filter object with my categories:
public class Filters
{
private int oem;
private int item;
private int group;
private bool active;
...
0
You don't want to "set the CSS" per say, but I don't see a problem with including the state of in your view model which can then be translated into an HTML class which you can use to style it appropriately in your view.
4
In the View you would see something like this by default
<div class="display-label">
@Html.DisplayNameFor(model => model.LName)
</div>
<div class="display-field">
@Html.TextBoxFor(model => model.LName)
</div>
To add a CSS class or something you simply do this.
@Html.TextBoxFor(model => model.LName, new { ...
Top 50 recent answers are included



