Click here to Skip to main content
16,019,043 members

Comments by karthikkushala (Top 33 by date)

karthikkushala 10-Jul-12 4:54am View    
Hey sorry . windos form Mean i created an desktop application which is used to login the user and after checking of my coditions. am redircting to IE
InternetExplorer IE = new InternetExplorer();
IWebBrowserApp wb = (IWebBrowserApp)IE;
wb.MenuBar = false;
wb.ToolBar = 0;
wb.StatusBar = false;

if (IE != null)
{
object Empty = String.Empty;
object URL = "http://URL.aspx?Id=" + Id + "&Pw=" + PW + "";

IE.Visible = true;
IE.StatusBar = true;
IE.StatusText = "Loading....";
IE.FullScreen = true;
IE.Navigate2(ref URL, ref Empty, ref Empty, ref Empty, ref Empty);

}
karthikkushala 6-Apr-12 13:04pm View    
we use to pay bulk repayment for loans and in accounts forms xml to DB insertion
problem is all select and insert going very slow .
when DB is small it worked fine
karthikkushala 6-Apr-12 12:57pm View    
thanks for reply.
i tried sql server profiler , audit logout taking more durantion.and SSRS taking more resources.
i didn't tried about database engine tuning adviser.and
am using .net , in our application we us more insert and select statement data base size is 25 GB.
system configration windows server 2008 and 4 GB RAM
karthikkushala 14-Dec-11 0:53am View    
ya what u said is correct , but i have a drop down before grid view , i will work as conditional ,like if i select 1 it shows only 3 hierarchies , if i select 2 it shows all.
the functionality working fine but , get after entering member id it how can i bind in revers order for drop down which are in gridview with out any event
karthikkushala 14-Dec-11 0:48am View    
i added asp and cs code ,