 |

|
Thank, it works!
but now I have the problem with button butConfirmYes , since its onclick event doesn't fire! can anyone help me with this?!
<asp:Button ID="butConfirmYes" runat="server" Text="Countinue" CssClass="styledbutton"
meta:resourcekey="butCountinue_userCode1"
onclick="butConfirmYes_Click1" CausesValidation="False"/
>
and in cs file I have
protected void butConfirmYes_Click1(object sender, EventArgs e)
{
context.SelectedCustomer.Unit.Panel.RequestUserCodes();
ErrorManager.AddMessage((string)GetLocalResourceObject("Error_CommandSent"));
}
|
|
|
|

|
I fixed that, thanks.
I should delete the OkControlID="butConfirmYes"
|
|
|
|

|
I have one form that is built in asp.net containing fields such as name, bank deatils etc.
after filling that online form the user will submit the data and on clicking a button pdf of the whole form filled by the user must be generated.
how can i do this using itext sharp?
also mention another any open source third party tool for this job if available and better than itextsharp??
plz reply ASAP.
|
|
|
|
|

|
k.
can u tell me how can we set the background color of the text written in paragraph
as
Paragraph heading=new paragraph("know your client");
doc.add(heading);
I want to color or highlight the text "know your client"
plz reply
|
|
|
|

|
Know your client
above is demonstration.
<p style="background-color:green;">Know your client</p>
--AP
|
|
|
|

|
k.
Thanks for your continuous replies......
I have written the following code for highlight the text in pdf using itextsharp in asp.net
Know your client ;
but i am getting the error in opening and closing tag of and
the error is expected ;
and also the text know your client error is doesnot exist in current context.
plz reply as soon as possible.
|
|
|
|
|

|
still getting error.
actually i am using asp.net on the click event of a button the pdf will be generated so in code i make a function which will generate a pdf.
errors after placing the code in ""
are:
only assignment,call,increment,decrement and new object expressions can be used as a statement
the name background does not exist in current context.
and many more.
|
|
|
|

|
one more thing i would like to ask.
the pdf generated using itextsharp will be generated to the client when he/she will completed the form filling process then on clicking the generate pdf button the pdf will be generated regarding the details which are fi;;ed by the client.
now i would like to ask is there any need of licence etc to use for itextsharp commericially purpose.
THANKS IN ADVANCE.
plz reply ASAP.
|
|
|
|

|
Member 9798541 wrote: now i would like to ask is there any need of licence etc to use for itextsharp commericially purpose.
Not a lawyer
but for your Knowledge,Infomation is as below:
iText(iText#)[^] is a free and open source library for creating and manipulating PDF files in C#.version 5.0.0 (released Dec 7, 2009) it is distributed under the Affero General Public License[AGPL] v3.
"Projects that do not want to provide their source code may either purchase a commercial license to iText 5 for an undisclosed price or continue using previous versions of iText under the more liberal license without any changes" that means for using iText v5.0 you have to buy a lisence.However Versions of iText through 4.1.6/4.2.0 were released under the MPL[^] and LGPL[^] licenses, which allowed them to be used in closed-source software projects. check more detail[^]
see terms of use[^]
website for itext[^]
They(itext) pay me from time to time to provide email support.
----
vote if it helps you.
-----
Abhishek Pant
|
|
|
|

|
Member 9798541 wrote: how can i do this using itext sharp?
You should have tried something before posting it. Start from here: Convert text into PDF using ASP.NET and C#[^]. There are more articles on using iTextSharp here on CP itself, just search for it.
Member 9798541 wrote: also mention another any open source third party tool for this job if available and better than itextsharp?
Not that I am aware of.
|
|
|
|

|
aspx
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="UserID" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="UserID" HeaderText="UserID" ReadOnly="True"
SortExpression="UserID" />
<asp:TemplateField HeaderText="Image">
<ItemTemplate>
<asp:Image ID="Image2" runat="server" ImageUrl='<%# "Handler.ashx?UserID="+ Eval("UserID") %>' Height="150px" Width="150px"/>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
_____________________________________________________________________________________________________________________________________________________________
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [UserID], [Image] FROM [Users] WHERE ([UserID] = @UserID)">
<SelectParameters>
<asp:CookieParameter CookieName="userid" DefaultValue="" Name="UserID"
Type="String" />
</SelectParameters>
</asp:SqlDataSource>
_____________________________________________________________________________________________________________________________________________________________
public class Handler : IHttpHandler
{
string strcon = ConfigurationManager.AppSettings["ConnectionString"].ToString();
public void ProcessRequest(HttpContext context)
{
string imageid = context.Request.QueryString["UserID"];
SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
connection.Open();
SqlCommand command = new SqlCommand("select UserID,Image FROM Users where UserID=" + imageid, connection);
SqlDataReader dr = command.ExecuteReader();
dr.Read();
// context.Response.BinaryWrite((Byte[])dr[0]);
context.Response.BinaryWrite((Byte[])dr[dr.GetOrdinal("Image")]);
connection.Close();
context.Response.End();
}
public bool IsReusable
{ ........................ with close properly
_____________________________________________________________________________________________________________________________________________________________
Database
UserID,UserName,Name,Image (UEC80001,Michael,MyName,<Binary data>)(nvarchar(50),nvarchar(50),nvarchar(50),image)
_____________________________________________________________________________________________________________________________________________________________
|
|
|
|

|
Apart from the fact that you're not setting the ContentType[^] of the response, you have a SQL injection vulnerability[^] in your code:
string imageid = context.Request.QueryString["UserID"];
...
new SqlCommand("select UserID,Image FROM Users where UserID=" + imageid, connection);
Anyone with access to your site could call Handler.ashx?UserID=1;DELETE FROM Users;, and your code would happily execute two queries: one to select the image for UserID 1, and one to delete all records from the Users table.
Change your code to use a parameterized query:
public sealed class Handler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
string imageid = context.Request.QueryString["UserID"];
string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
using (SqlConnection connection = new SqlConnection(connectionString))
using (SqlCommand command = new SqlCommand("SELECT UserID, Image FROM Users WHERE UserID = @UserID", connection))
{
command.Parameters.AddWithValue("@UserID", imageid);
connection.Open();
using (SqlDataReader dr = command.ExecuteReader(CommandBehavior.CloseConnection))
{
if (!dr.Read()) throw new HttpException(404, "Image not found.");
context.Response.ContentType = "image/jpeg";
context.Response.BinaryWrite((byte[])dr[dr.GetOrdinal("Image")]);
}
}
}
public bool IsReusable
{
get { return true; }
}
}
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
appreciate Richard reply~
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [UserID], [Image] FROM [Users] WHERE ([UserID] = @UserID)">
<SelectParameters>
<asp:CookieParameter CookieName="userid" DefaultValue="" Name="UserID"
Type="String" />
</SelectParameters>
i using the cookie to show the particular user image,so at my side should how to call?
<asp:TemplateField HeaderText="Image">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%#"Handler.ashx?UserID=1;"+Eval("UserID")%>' Height="150px" Width="150px"/>
</ItemTemplate>
</asp:TemplateField>
ImageUrl='<%#"Handler.ashx?UserID=1;"+Eval("UserID") can i calling by using cookie? at handler cant request cookie @@ other that this handler have other method to display image?
|
|
|
|

|
If you want to use a cookie instead of a query-string value, change your Image to:
<Image ID="Image1" runat="server" ImageUrl="Handler.ashx" Height="150px" Width="150px"/>
and change the start of the ProcessRequest method to:
var cookie = context.Request.Cookies["userid"];
if (null == cookie) throw new HttpException(404, "Cookie not found.");
string imageid = cookie.Value;
NB: You'll still need to use a parameterized command to avoid SQL injection. Cookie values can be altered by the user almost as easily as query-string values.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
ok thx i try ^^
|
|
|
|

|
sorry for keep on disturb u and thank u very much
By using ImageUrl="Handler.ashx", can show the data on gridview?
i'm first time using handler XD. for me i set the following code at web.config izit correct?
why it will not previous any error message on browser when my handler code got problem.
<system.web>
<httpHandlers>
<add verb="*" path="Handler.ashx" type="ShowImage,System.Web.UI.SimpleHandlerFactory" validate="true" />
</httpHandlers>
<urlMappings enabled="true">
<add url="~/MyProfile.aspx" mappedUrl="~/Handler.ashx"/>
</urlMappings>
</system.web>
The code should be no problem why still cant function, my connection correct ?
public void ProcessRequest(HttpContext context)
{
var cookie = context.Request.Cookies["userid"].Values.ToString();
if (null == cookie) throw new HttpException(404, "Cookie not found.");
string imageid = cookie;
string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
using (SqlConnection connection = new SqlConnection(connectionString))
using (SqlCommand command = new SqlCommand("SELECT UserID, Image FROM Users WHERE UserID = @userID", connection))
{
command.Parameters.AddWithValue("@userID", imageid);
connection.Open();
using (SqlDataReader dr = command.ExecuteReader(CommandBehavior.CloseConnection))
{
if (!dr.Read()) throw new HttpException(404, "Image not found.");
context.Response.ContentType = "image/jpeg";
context.Response.BinaryWrite((byte[])dr["Image"]);
}
}
}
|
|
|
|

|
The first lines should be:
var cookie = context.Request.Cookies["userid"];
if (null == cookie) throw new HttpException(404, "Cookie not found.");
string imageid = cookie.Value;
If that still doesn't work, try navigating directly to the handler to see what error it produces.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
how to navigating directly to the handler ?
|
|
|
|

|
In you web browser, go to the address bar and type in the URL of the handler. The exact URL will depend on your setup; if you're not sure, start with the grid page and replace the "PageName.aspx" with "Handler.ashx" (where "PageName" is the name of your page).
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
Hi, I'm Newbie to ASP.Net and looking for a gridview on the page which will allow me to edit the row information on double clicking on the record, but problem is I've a column in that gridview that should display corresponding to that record image. And also I'm unable to display the image. All these data should come from database.And print the data of the gridview. Thank you..
|
|
|
|

|
I am attempting to import an Excel Spreadsheet (2010, XLSX) to Gridview, then upload to MS SQL 2012 database. There are 30,000 rows in spread sheet approximately. When I run it locally it works just fine. When I put it live on the server it doesn't work properly.
When it is importing into the Gridview it stops at a particular row every time. The row is around 21,000. If I delete the top 10,000 rows from spreadsheet it still stops at that same row. So in other words it doesn't matter if I try 21,000 rows or 11,000 rows it stops at that same one. That tells me it isn't a size or time limit. If I delete the top 16,000 rows and the bottom 5,000 rows. It does go past that record. This tells me the next record doesn't have bad data.
So we know it isn't a size / time issue. We know it isn't corrupt data in the next row. We know the code runs fine locally, but not on server.
I have tried this using datasets and datatables and the results are the same.
Connection String:
string myPath1 = @""+Server.MapPath(".") + @"\"+TextBox3.Text;
string strConn = @"provider=microsoft.ace.oledb.12.0;extended properties=""excel 12.0;HDR=YES"";data source="+myPath1+"";
In web.config I have:
<httpRuntime maxRequestLength="72604736"/>
and
<requestLimits maxAllowedContentLength="72604736" />
GridView code:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="True" >
</asp:GridView>
Code behind to fill GridView (DataTable)
OleDbConnection myExcelConn = new OleDbConnection(strConn);
OleDbCommand myExcellComm = new OleDbCommand();
OleDbDataAdapter oda = new OleDbDataAdapter();
DataTable myDT = new DataTable();
myExcellComm.Connection = myExcelConn;
myExcelConn.Open();
myExcellComm.CommandText = query;
oda.SelectCommand = myExcellComm;
oda.Fill(myDT);
myExcelConn.Close();
GridView1.DataSource = myDT;
GridView1.DataBind();
Code behind to fill GridView (DataSet) DataSet excelDataSet = new DataSet(); OleDbDataAdapter da = new OleDbDataAdapter(query, strConn);
da.Fill(excelDataSet);
GridView1.DataSource = excelDataSet;
GridView1.DataBind();
Again doesn't matter if I use DataTable or DataSet it produces the same thing.
I have verified the spreadsheet that gets uploaded does contain all the data. I have tried using FTP instead of file upload and same results. I have downloaded the uploaded excel file and ran it locally and again it works just fine.
Using Visual Web Developer Express 2010 with all Service Packs and Updates in C# local machine - Vista Ultimate with all updates Web server - VPS Windows Server 2012 with all updates and MS SQL 2012 with all updates.
Does anyone have any idea and where I should look next to solve the problem?
|
|
|
|

|
I got it working.
Turns out you need to have IMEX=1 at the end of the connection string.
The complete working connection string will look like:
string strConn = @"provider=microsoft.ace.oledb.12.0;extended properties=""excel 12.0;HDR=YES;IMEX=1;"";data source="+myPath1+"";
|
|
|
|

|
Hi,
I have a website mydomain.com and I have few pages under this domains requires authentication which are the member's area pages but NOT all pages under this domains needs authentication.
I added the following to web.config:
<authentication mode="None">
<forms loginUrl="~/Signin" timeout="2880" />
</authentication>
then in the signin page, i added this:
FormsAuthentication.Authenticate(txtEmailAddress.Text.Trim(), txtPassword.Text);
and the following in the pages where I need it to be authenticated:
if (!HttpContext.Current.User.Identity.IsAuthenticated) FormsAuthentication.RedirectToLoginPage();
when I sign it should go to the home.aspx page where I placed the IsAutehnicated but it's going back to the sign page? why is this?
Regards,
Jassim
Technology News @ www.JassimRahma.com
|
|
|
|

|
This is not the direct answer to this question but looking at this article and the attached source code, I think your problem will be fixed:
Understanding and Implementing ASP.NET Custom Forms Authentication[^]
Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore, Dream. Discover.
|
|
|
|

|
I have a local database to check authentication. You may create same database by C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe.
Create any MVC4 application and look _LoginPartial.cshtml file. You will see line @Html.ActionLink"Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })
1. Set your break point at method “Login” in Account controller.
2. Click in login and you will get exception at Unhandled exception at line 115, column 5 in http://localhost:61841/Scripts/jquery.unobtrusive-ajax.js.
But why it is so? How can I use my local database for authentication?
Why the exception is in javaScript?
Do you an idea how to implement Authentication with local database?
Any help will be appreciated.
Agha Khan
|
|
|
|

|
I have implemented the Autocomplete extender in Gridview. My Grid has vertical and horizontal scroll bars. Everything is working fine except when i try to use autocomplete control on the last (3 to 5 ) rows of the grid. It displays the suggestion list but it hides the list behind the horizontal scrollbar of the gid.
Any Suggestions?
|
|
|
|

|
Just a theory
Sounds like the autocomplete is trapped inside the bounderies of the gridview.
You may have to play with css overflow for the gridview, or if the gridview is inside div tags, play with it there.
Something is trapping or moving the autocomplete.
|
|
|
|

|
Using a default MVC 4 template I would like to figure out how to use various jquery fucntions etc. but this is new territory for me.
http://jqueryui.com/draggable/[^]
Could someone explain how I can put this on the landing page for the default MVC 4 template? That should get me going.
Thank you.
[Edit]
Figured out why nothing I was doing was working.
http://stackoverflow.com/questions/12445134/why-wont-my-jquery-ui-tabs-control-render-correctly[^]
Why in the heck does the template put @Scripts.Render("~/bundles/jquery") after everything has been rendered?
Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.
modified 29 Jan '13 - 12:48.
|
|
|
|

|
Hi,
In my application, i have a webservice, where i am doing some update operation.
I have a scenario here, like i want to display an message box to the user, based on the user input in messagebox(yes/no) i have to perform some operation in the webservice.
FYI : I tried MessageBox.Show() , it will work fine during debugging, if i deploy the same code on the server, MessageBox wont be displayed.
And i am calling this webservice from .aspx file using jquery.
sample code :
[WebMethod]
public string Save(BusinessException exception, BusinessException oldexception)
{
UserContext userContext = GetCurrentUserDataContext();
IList<string> lineExtIds = exception.LineExtIds;
IList<string> ListExtIds = exception.ListExtId;
string username = null;
{
Presenter.Save(lineExtIds,userContext.Login,userContext.Profile);
}
{
return;
}
return "succeed";
}
Could any one tell me how to display an alert message box in this scenario, where the code should be written inside asp.net webservice file.?
|
|
|
|

|
Rocky23 wrote: i want to display an message box to the user, based on the user input in messagebox(yes/no) i have to perform some operation in the webservice.
Show/Ask for yes-no confirmation on UI side before making the Webservice call. Post which, take action. It's a web application where you have client-server model and thus you cannot raise a confirm to client in between server method implementation.
Modify your implementation to handle the confirm before invoking service.
|
|
|
|

|
Sir;
you may be interested with a control like Message Box Control[^]
Help people,so poeple can help you.
|
|
|
|

|
Hi Ali,
Thank you for your suggestion.
But,I can't use MessageBox here, because it is a ASP.NET application.
If i use MessageBox in asp.net, this MessageBox will appear only in debugging mode, but it will not appear once the code is deployed in server.
And i can't even use alert() or confirm() directly, because i have to do this change inside ASP.NET webservice file.
Appreciate any more suggestion/help from your side..
|
|
|
|

|
First the control I suggested is for web applications it is similar to jquery dialog.
Second in web applications you should confirm user request before making the request,
but if the job generated another decision in the server side -like coping example in my article- you should send back a response asking the user for making the decision and make another request complete the job.
Lastly the message box you see on debugging mode is displayed on the server interface and wont be sent to the client.
or use this javascript code.
if (confirm('Are you sure?')){
}
Help people,so poeple can help you.
|
|
|
|

|
JQuery has a message box for web applications that can handle a yes no dialog, but the previous posts are correct, such as using confirm(); on the client side;
|
|
|
|

|
Hello,
In my web application i want to change the color of menu font dynamically.
I am using external css for menu that id is #buttons
the menu font color resides in #buttons a{color:red;}
I want to change it through javaScript dynamically.I have created a session(control value assigned to session) and session value is assigned to hiddenfield.
I have used following code but it's not working proper.
function SetValue()
{
menufontcolor = document.getElementById('buttons');
menufontcolor.style.color =
document.getElementById('HiddenField8').value;
}
I have called SetValue() at body section OnLoad Event.
Please help me..
Thanks
Regards
Sunil Sharma
modified 28 Jan '13 - 6:32.
|
|
|
|

|
1. SetValue() & setValue() are two different method names. See it this is the issue.
2. Why hidden field and all? Just switch the css at runtime.
Debug and share what is happening and if you get any error.
|
|
|
|

|
capture the signature from signature pad in Web App.I am using TOPAZ syStems INC Pad Model T-LBK462-KAHSB-R
|
|
|
|

|
Based on the little information shared and not a good framed question, for now all I can share is, probably you can achieve it using ActiveX, but that will be IE only. You have to look into it.
Further, there are paid products for the same, not sure if anything free. Example: http://www.websignaturecapture.com/[^]
|
|
|
|

|
Here is a question[^] for the same.
The OP posts the comment of question as a answer and then Accepts it.
Lunch Time,Check the bad solution.and distribute prizes to good solutions.
|
|
|
|

|
Anyone know about login object in asp.net?
Plz tell me Nature is Simple but Conceptual
|
|
|
|
|

|
Perhaps this article could be of some help for you:
Understanding ASP.NET Roles and Membership - A Beginner's Tutorial[^]
Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore, Dream. Discover.
|
|
|
|

|
Hi all,
has anyone of you guys ever worked with Boot Metro[^]?
If yes - is it well supported by older browsers?
Any special advices, tipps or tweaks?
cheers,
Marco Alessandro Bertschi
|
|
|
|
|

|
signature capture from signature pad in wep application(in VB.Net)
Thanks
|
|
|
|

|
This is not a well framed question! We cannot work out what you are trying to do/ask from the post. Please elaborate and be specific.
Use the "Edit" link to edit your question and provide better information.
|
|
|
|
|

|
I am using MVC 4 and I can not get the selected value. I have no idea what I am doing wrong. It seems this should be straight forward but I have pounded my brain on my keyboard for hours now.
I have an EntityController and on its construction it builds up a view model for the view. In other words:
private AppDBContext _db = new AppDBContext();
private Entities _viewModel = new Entities();
public EntityController()
{
_viewModel.ActiveEntities = _db.Entities.ToList();
var platformQry = _db.Platforms.AsEnumerable();
_viewModel.Platforms = new List<Platform>(platformQry.Distinct());
}
Platform is just a simple 2 column item that has an ID and a name. i.e. :
public class Platform
{
public int ID { get; set; }
[Required]
public string Name { get; set; }
}
The view model is quite simple. It is maintaining the available Platform items, has a value to track the ID of the selected item, and contains a collection of the POCOs (Entity). i.e.:
public class Entities
{
public IEnumerable<Entity> ActiveEntities { get; set; }
public IEnumerable<Platform> Platforms { get; set; }
public int PlatformFilterId { get; set; }
}
Now my intention is to use this value (the ID) in a callback to the controller to filter down the ActiveEntities. So here is the Action method (it is just the Index of the controller).
public ActionResult Index()
{
_viewModel.ActiveEntities = _db.Entities.AsEnumerable();
if (_viewModel.PlatformFilterId != 0)
{
_viewModel.ActiveEntities = _viewModel.ActiveEntities.Where(e => e.Platform == _viewModel.PlatformFilterId);
}
_viewModel.ActiveEntities = _viewModel.ActiveEntities.ToList();
return View(_viewModel);
}
Seems simple enough but maybe this is already wrong.... And here is the view:
@model AppName.ViewModels.Entities
@{
ViewBag.Title = "Entity Overview";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
@using (Html.BeginForm("Index", "Entity", FormMethod.Get))
{
<p>
@Html.DropDownListFor(x => x.PlatformFilterId , new SelectList(Model.Platforms, "ID", "Name"), "-- Filter by Platform--")
<input type="submit" value="Filter" />
</p>
}
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.ActiveEntities.First().Name)
</th>
<th>
@Html.DisplayNameFor(model => model.ActiveEntities.First().Name)
</th>
<th></th>
</tr>
@foreach (var item in Model.ActiveEntities) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.CreatedDate)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID })
</td>
</tr>
}
</table>
The outcome is that I get my dropdown populated correctly, but on the postback (i.e. the Index action method firing after I click "Filter") the PlatformFilterId is always 0 so of course I can never filter. What am I doing wrong?
Any help is appreciated.
Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.
|
|
|
|
 |