Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

Tarik Guney

@Tarik Guney
About
Posts
82
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Find Method Name
    T Tarik Guney

    Yeap, So what's the solution pls :( :^)

    I am not a perfect programmer,but i have perfect's programmers' habits.

    ASP.NET question

  • Find Method Name
    T Tarik Guney

    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.

    ASP.NET question

  • How to assign master page through web.config
    T Tarik Guney

    I am not a perfect programmer,but i have perfect's programmers' habits.

    ASP.NET tutorial question workspace

  • How to close the web application
    T Tarik Guney

    you can't close application :doh:

    I am not a perfect programmer,but i have perfect's programmers' habits.

    ASP.NET tutorial

  • Multiple Access
    T Tarik Guney

    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.

    ASP.NET question javascript

  • Adjust location of a control on asp.net pages
    T Tarik Guney

    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.

    ASP.NET csharp asp-net

  • Multiple Access
    T Tarik Guney

    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.

    ASP.NET question javascript

  • Linq To Sql Is Faster Than Traditional Dataset Technique Or Connected Mode
    T Tarik Guney

    have you googeled it ?

    I am not a perfect programmer,but i have perfect's programmers' habits.

    LINQ database question csharp linq

  • LINQ to SQL Performance & Resources
    T Tarik Guney

    It doesnt matter how large your datacontext is :)

    I am not a perfect programmer,but i have perfect's programmers' habits.

    LINQ database question csharp linq business

  • How to Resize a pop-up according to it's content height and width
    T Tarik Guney

    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); } [Click to close window](javascript: window.close();)

    I am not a perfect programmer,but i have perfect's programmers' habits.

    ASP.NET javascript tutorial question

  • Linq Data Source orderby problem
    T Tarik Guney

    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.

    LINQ csharp linq com help

  • Linq's Got Issues
    T Tarik Guney

    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

    LINQ csharp database linq

  • ASP.NET 2.0 and vista
    T Tarik Guney

    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.

    ASP.NET csharp asp-net database sql-server sysadmin

  • Go back
    T Tarik Guney

    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.

    ASP.NET csharp asp-net tutorial

  • Data Flow between a web server and a computer
    T Tarik Guney

    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.

    Windows Forms help csharp sysadmin

  • Data Flow between a web server and a computer
    T Tarik Guney

    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.

    Windows Forms help csharp sysadmin

  • Mouse Left = Mouse Right
    T Tarik Guney

    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...

    C# tutorial

  • Mouse Left = Mouse Right
    T Tarik Guney

    well, we can use SendKeys class to implement for Mouse Keys.?

    C# tutorial

  • how to create
    T Tarik Guney

    you cannot create dll in asp.net instead of you can use Class Libary option on opening new project.

    ASP.NET csharp asp-net tutorial

  • Mouse Left = Mouse Right
    T Tarik Guney

    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...

    C# tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups