Yeap, So what's the solution pls :( :^)
I am not a perfect programmer,but i have perfect's programmers' habits.
Yeap, So what's the solution pls :( :^)
I am not a perfect programmer,but i have perfect's programmers' habits.
Hi, What I want is to get Methods Names which are invoked by the user and their parameters and values to log users' actions. How can I do that ? is there any sample solution for that. Thanks.... :doh:
I am not a perfect programmer,but i have perfect's programmers' habits.
I am not a perfect programmer,but i have perfect's programmers' habits.
you can't close application :doh:
I am not a perfect programmer,but i have perfect's programmers' habits.
Actually yeah I knew I should write my own codes but the problem is how i can do that ? Do you know any article or source code for that. It'd be so appreciated... thanks.
I am not a perfect programmer,but i have perfect's programmers' habits.
Hi again... I just wanna adjust location of a control like textbox whatever located on asp.net page and i wanna make it by using c# code at code-behind... thanks in advance...
I am not a perfect programmer,but i have perfect's programmers' habits.
Hi.. I don't know if you've ever used Gmail Upload type but I just wanna use that type upload. Ok let me tell you what i want :) There must be a button and when users want to add more than one file at the same time then they can just click on that button to add a new fileupload control without no page refresh and when clicking on Upload button all browsed and selected file is gonne go :) how can I do that ? how kind javascript code i have to use and the other processes. Thanks in advance...
I am not a perfect programmer,but i have perfect's programmers' habits.
have you googeled it ?
I am not a perfect programmer,but i have perfect's programmers' habits.
It doesnt matter how large your datacontext is :)
I am not a perfect programmer,but i have perfect's programmers' habits.
How to Resize a pop-up according to it's content height and width... I've got a popup on my application and it's content is dynamic I mean sometimes it needs to be big or small according to it's content so how can i get over it... thanks.. I found some code but it's for pictures but i want it to make the same effect according to a div or another control... The code i found : Image function resize() { window.resizeTo(document.image.width+12, document.image.height+82); } [](javascript: window.close();)
I am not a perfect programmer,but i have perfect's programmers' habits.
Hi... I just wanna order my data according to two parameters : status and id so how can write this expression to get over that... I should write it into that box appearing below : This picture was taken from LinqDataSource Properties Window http://pixelshack.com/img/1143picTaken.png[^]
I am not a perfect programmer,but i have perfect's programmers' habits.
Hey everyone, I was trying to achieve custom data paging by using LINQ but LINQ has got some issues. Ok let me introduce what i've done and got back. There are 2 dropdownlists and listbox on my page. one of dropdownlists is for Page Number and the other is for Page size and the results show in ListBox. Page number is changing according to selected size at dropdownlist which is for page size. and the related code is here : private void FindPageTotalNumber() { ddPageIndex.Items.Clear(); UsersDataContext tu = new UsersDataContext(); var allusersNumbers = from users in tu.Kullanicis select new { users.KullaniciID }; int selectedPageSize = Convert.ToInt32(ddPageSize.SelectedItem.Text); int count = allusersNumbers.Count(); int totalPageSize = 0; if (count % selectedPageSize == 0) { totalPageSize = count / selectedPageSize; } else { totalPageSize = (count / selectedPageSize) + 1; } for (int i = 1; i <= totalPageSize; i++) { ddPageIndex.Items.Add(i.ToString()); } } Now here is the DataBind Code to bind related data to ListBox after changing page number or page size : private void BindDataToUsersListBox() { UsersDataContext u = new UsersDataContext(); var users = from au in u.Kullanicis select new { au.KullaniciAdi, au.KullaniciID }; int pageIndex = Convert.ToInt32(ddPageIndex.SelectedItem.Text); int pageSize= Convert.ToInt32(ddPageSize.SelectedItem.Text); lbKullanicilar.DataSource = users.Skip((Convert.ToInt32(pageIndex)-1)*pageSize).Take(pageSize); lbKullanicilar.DataBind(); } The other Stuff : protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { FindPageTotalNumber(); BindDataToUsersListBox(); } } protected void ddPageSize_SelectedIndexChanged(object sender, EventArgs e) { FindPageTotalNumber(); BindDataToUsersListBox(); } protected void ddPageIndex_SelectedIndexChanged(object sender, EventArgs e) { BindDataToUsersListBox(); } Ok now when I select page size 1, naturally page index is increasing and should show data one by
But u should know there is ISS in Vista's Version under Vista Business
I am not a perfect programmer,but i have perfect's programmers' habits.
How to get previous page's link the users come from in asp.net code-behind. Thanks in advance.
I am not a perfect programmer,but i have perfect's programmers' habits.
yeap. This is what exactly i want. How can i do that ?
Paul Conrad wrote:
Are you trying to figure out how to update the data flow metrics to the progressbar control?
I am not a perfect programmer,but i have perfect's programmers' habits.
Hi, I want to show how my datas make progress ,while they are being sent from My Computer to the Web Server. Here is the scenerio : I have a web service and some pictures is being gone to the web server including my Web Service stuffs and my webservice takes the pictures and blah blah blah. and i send these pictures as byte and from my computer using a windows apps coded with c#.After i click on the send button,a little form must be appeared and show the progress how made to users. The datas are being sent to web server from my computer.as a result that i want to inform the users with a progressbar control . I hope I could descripe my problem to whom wanna help me. Thanks in advance.
I am not a perfect programmer,but i have perfect's programmers' habits.
Ok. if i wanted to call a function which is fired when mouse right button is clicked, how would i do that ? thanks in advance... atarikg...
well, we can use SendKeys class to implement for Mouse Keys.?
you cannot create dll in asp.net instead of you can use Class Libary option on opening new project.
i know it is little complicated but i said what i said :) i mean i want what i said.If i can find a way to handle what i want,i can make it my project better.. Thanks in advance...