Enable 32 bit support in Asp.Net pool setting and then try.
amargujrathi2006
Posts
-
Error in deploying Asp.net web application with crystal report version 13 -
Save aspx page with html tags -
save or register password for next login form ...You can store user's pwd in registry by using Microsoft.Win32.RegistryKey class.
-
Error: Invalid length for a Base-64 char arrayI have a master page in that i am loading user control dynamically, when page postback sometimes it gives error 'Invalid length for a Base-64 char array.' Kindly provide me solution if anybody have.. Thanking you!
-
Post Back problem !!!Hi, You can use Request.Form collection to get the values of textboxes parameter. For that you need to know their client ID. I think, this will useful. Regards, Amar
-
Unable to validate dataHi, I think that problem might be occured at the time when user enter any special tag like chararcter in textboxes like '<' or '>'. So first you check with this possibility and write RequestValidate = "false" in Page directive. But this attribute affects security of your site. Regards, Amar
-
developing a project with csharp (rookie)Hi, for searching through file system, I think you can use Microsoft.VisualBasic.FileIO.FileSystem Class by adding reference of Microsoft.VisualBasic.dll, it will give u very flexible way for handling files and folders. Regards, Amar
-
How to Raise my Custom Event HandlerHi, Can you describe your coding flow shortly ? Eg. class customcontrol { //code of event handler } class where_you_use_customcontrol { //code of event handler } and when you want to raise that event. So my view become clear. Regards, Amar
-
How to Raise my Custom Event HandlerHi According to my knowledge when you want use any event of custom control,you need to assign local handler to that event ; eg. customcontrol1.MouseMoveEx+=OnMouseMoveEx; where OnMouseMoveEx and customcontrol1 are both in one class. I think, you will get how to do it. Regards, Amar
-
Custom Event Handler Problem.If you want to add new constructor in derived class, there should be exact match of constructor in base class with same parameter. If not then there you have to make call of base class constructor explicitly . So here i have made call to base constructor as following arguments, you can change it. public MouseMoveExEventArgs(Point mapScrollPosition) : base(MouseButtons.Left, 1, mapScrollPosition.X, mapScrollPosition.Y, 2) Hope it will helpful Regards Amar
-
Folder Browser(Interesting one) -
Grid View Selected IndexThis event doesn't give you any selected row,you have to select row of the gridview as GridView3.SelectedIndex=e.NewSelectedIndex; GridView3.datasource=place here datatable GridView3.databind() place ur code in the following event. I think your problem will be solved. protected void GridView3_SelectedIndexChanged(object sender, EventArgs e) { string str = GridView3.SelectedRow.Cells[1].Text; lblMsg.Text = str.ToString(); OR lblMsg.Text = GridView3.SelectedRow.RowIndex.ToString(); }
-
Dropdownlist should trigger the panelhi devkranth, For that you have to use javascript, first you need to find out the P1 and P2 id of the panel using javascript eg. function switchpanel(panelno) { var p1=document.getElementById("P1"); //find out P1 with its client ID var p2=document.getElementById("P1"); //find out P2 with its client ID if (panelno==1) { p1.style.display="block"; p2.style.display="none"; } else { p1.style.display="none"; p2.style.display="block"; } call this script on dropdown_change event with scriptmanager as previously mentioned. }
-
Dropdownlist should trigger the panelIn this case, you can use another Updatepanel to place those P1 and P2 in that Updatepanel. If not possible, then you can use javacript by registering it with Scriptmanager.registerClientScriptblock. I think one of the above method solve your problem. Regards, Amar Gujarathi cfoamar23@gmail.com
-
Better Reporting ToolI m working in ASP.Net (1.0 Version ) in that i have problem with reporting . Is there any better tool for reporting specially for Cross Tab Reports other than Crystal (Version 11.0)? In this Crystal Report, we are unable to make it in more customizable form like colors coombination for columns when particular condition is met.