|
It's always been that way. You make the ddl about 3 px wider
|
|
|
|
|
I have settled this problem.
solution: I removed "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">" in 2nd row of the *.aspx page.
thank you very much!
|
|
|
|
|
Hi i want a photo gallery for ASP.net in which i could zoom the thumbnails with next and previous option.I used NotesforGallary, but after doing everything its just showing thumbnails not the slide show......If anybody could help....Thanks in Advance!
Inderjeet Kaur
Sr. Software Engg
|
|
|
|
|
What have you tried so far? Where are you stuck?
If you have thumbnails with zoom and all you want is slideshow, see: 23 Best jQuery Slideshow (Gallery) Plugins[^]
There are lots of jQuery plugins related to thumbnail sliders. Check them out.
|
|
|
|
|
these plugins do not read files from folder....not dynamic....
Inderjeet Kaur
Sr. Software Engg
|
|
|
|
|
Is there any way to do the Office automation on server without installing office on server?
ONe Way i know that create Open xml format.
|
|
|
|
|
As per my knowledge, not possible.
Parwej Ahamad
|
|
|
|
|
I recently set up a build server for our team and some of the projects used office automation. All I did on the server was to install Ms Office PIA's that resolved our builds but not sure if the code would run from there. Maybe test it and see?
|
|
|
|
|
How do you think that will work? A Primary Interop Assembly just encapsulates the calls to the COM components. At runtime, the PIA will try to instantiate the COM control, and without the COM control installed on that computer, you'll get a runtime error...
|
|
|
|
|
Inside the data grid in the item template the button was replaced with check box for more feasibility and if I click the button, the panel is displayed accordingly and the panel elements are also displayed along with its contents.
Now my requirement is to change this button in item template with a checkbox and in the header template have included another checkbox.
I am able to select the items in the check and also able to check all in the data grid. I have two panels A and B(say),when i check more than one check box then panel B is to be displayed.
When I check only single checkbox then panel A is only to be displayed.
In my case ,when this check box is checked I am able to see the panels A and B for their corresponding action but the elements inside the panel such as (corresponding row's data base events are not fetched properly) . Can any one explain me clearly how to resolve this with some sample example or can you help in my code?
Vandana
|
|
|
|
|
Can any one help in this ???
|
|
|
|
|
|
Hi dear friends,
i want to make a web site with asp.net .
www.asaydinlatma.com.tr
how can i create like this web site with asp.net?
Anyone can help me about this?
Thanks so much
|
|
|
|
|
You have not given any indication of your skills or experience, so I can only suggest you start with the ASP.NET website[^]. You can also look at the Articles[^] here on CodeProject for more tutorials and samples.
Programming is work, it isn't finger painting. Luc Pattyn
|
|
|
|
|
you are right. but at the most i wanted to learn that when i click one category of any products group so how can i show my pictures and how will i display their specifications on page.
i can achieve other side of www.asaydinlatma.com web site. but i dont know how to show pictures on page like this way, and how to show products specifications near the pictures.
|
|
|
|
|
As suggested by Richard, the only way to learn is by doing it yourself. I doubt anybody will just create a page and hand you the code.
Why not get an understanding of the page you mentioned, by looking at it's source code. Copy the code to notepad or similar, save it with a htm extension, then start modifying the code to understand what's happening and why. Read a good book on HTML, then move onto either JavaScript and CSS.
The once you have those skills start adding server functionality to the page using either Classic ASP or ASP.Net
|
|
|
|
|
ok. I have started to create master page firstly. i wish from now on you can help me . Now i have a banner part(header),menu part (left side) and footer part in my master page. i want to fix %100 of my image to header part but my image is big sized. how can i fix my image to header part?i want my image appears %100 in my header row.
|
|
|
|
|
I have a 2010 C# web application that I am writing where I want to be able to access some excel files that are located on a web server. I know if I want to access the files on my own workstation I would do the following:
file://localhost/c:/work/app or file:///c:/work/app.
However I do not know how to access the files on another web server. What syntax would I use?
|
|
|
|
|
You would access the file via a UNC path, such as, \\server\share\file.name, or via a mapped path if it has been created. However, the path must be accessible to the ASP.NET user account the context is running under.
Failure is not an option; it's the default selection.
|
|
|
|
|
can you show me the full path you are referring to? the very start if it is file http or whatever it its?
|
|
|
|
|
|
|
With a connection, a select statement and a data bind.
|
|
|
|
|
|
Create a SQLDataClient obejcts to Interact With Database.. like SQLCommand, SQLConnection, SQLDataAdapter and one Datatable.
Write SQL Query and bind it with SQLCommand Object along with Type of Query either a Text or StoredProcedure. Then provide a Connection to that SQLCommand object.
And finally execute the query with ocmd.ExecuteNonQiery..
now put the output in Datatable like as:
oDA.SeelctCommand = oCmd;
oDA.Fill(oDT);
Now we have data in Data Table object (oDT).
No w bind it to your dropdown list..
like ddlTest.DataSource = oDT;
ddlTest.DataBind();
- Happy Coding -
Vishal Vashishta
|
|
|
|